I have to deploy an application on multiple computers and i want that the SQL server should be installed on one PC how can i connect all PCs to the SQL server.
Thanks in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Modify the connection string in your application that uses DB to point to your SQL server, like this:
For example, if the name of your SQL server host computer is
nysqlsrvr1, and your database is calledappdbconnection string would look like this:Make sure the user running your DB application has permissions to access the database, or replace
Integrated Security=SSPI;with appropriate user name and password. You can find more information about DB connection strings here http://www.connectionstrings.com/.