Click here to Skip to main content
15,895,667 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i have installed a windows application in three systems. How can i keep a single sql server database in an other system and how i connect all
Posted

1 solution

- Are they on the same network (not separated by router)?
- Is there no firewall rule blocking the connection?
- Do you have a dedicated machine that can run the sql server all the time it could be needed?
- Let's suppose "connect all" means connect from all clients to the same sql server.
- Let's suppose you are using Microsoft SQL Server 2005 or above (the links below assume 2008)
If these requirements are satisfied:
1) After server and database installation enable remote connection: http://blogs.msdn.com/b/walzenbach/archive/2010/04/14/how-to-enable-remote-connections-in-sql-server-2008.aspx[^]
2) Set proper connection strings on client side: http://www.connectionstrings.com/sql-server-2008[^]
3) You might need to set up logins on the server and database users, depending on what your authentication scenario is.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900