Click here to Skip to main content
15,899,313 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
i install sql server a single machine.now i want create table and run queries on onther lan machine
Posted

In your lan machine install SQL Server client version/Management studio and connect your server.
 
Share this answer
 
You need to have SQL Management Studio on other system from which you want to create tables and queries.

Once you have environment ready on other system, connect to this system on which you installed SQL server. In order to connect this SQL Server, you need to configure it to allow remote connections.
 
Share this answer
 
Also, I must add, to access Sql Server instance from outside, you must install the server in Mixed mode.

Generally if you have already installed the Sql server, then you can check by Right-clicking the server, and then click Properties.
In the Security tab if "sql server and windows" is selected it is mixed mode.

Mixed mode authentication allows you to use SQL Authentication and so you can connect sql server using sql server userid and password. Otherwise for windows authentication, you have to login using domain account.

Other than that, you also need to carefully exempt the SqlBrowser and sqlservr.exe. This will allow you to find the server from outside.

:thumbsup:
 
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