Click here to Skip to main content
15,886,776 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have one application just like one type of bill project. in this project i am using sql server management studio 2008 for storing and retrieving data.now i want to install on different-different computer.how can i install this project with this database?
is this mandatory to install sql server management studio 2008 on each computer?if yes then how can i set connection string in app.config file.
Posted
Updated 15-Apr-14 1:17am
v2
Comments
Emre Ataseven 15-Apr-14 16:23pm    
Do you want to move your server or what? Is it multi-user application?

1 solution

You don't need SQL Server Management Studio on the machine but you need SQL Server. Management Studio is just the user interface to manage SQL Server.

Second, you don't need SQL Server on all the machines if you your application is connected to the SQL Server via network (intranet/internet) and you can just communicate to one SQL Server.

I think the second is the one you probably want as well otherwise it does not make sense to have SQL Server at all for every single instance of application.

Look at the MSDN documentation to understand how you can use Connection String in config files:

http://msdn.microsoft.com/en-us/library/ms254494(v=vs.110).aspx[^]
 
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