I have a computer(computer A) which the ms sql installed, and I have another computer(Computer B) in which the application resides. I want to connect开发者_如何学Python the ms sql database from computer B to computer using this application?How will I do that? What is the connection string should I use, firewall settings, database configutions, etc?
Well, firewall rules will have to open up port 1433 by default. That can change (but has little reason to), but if you're running just one instance and didn't change this, it's likely 1433.
Enable remote connections through sql studio and TCP/IP through connection manager: http://forums.asp.net/t/1338911.aspx/1?how+to+enable+remote+Connection+sql+server+2008
And Joe Stefanelli's excellent connection strings site, www.connectionstrings.com; different application languages/tech will use different connection strings.
You'll also need a user of some sort, and whatever authtype. Easiest would be sql server auth, and that would be as easy as right clicking on the "security" folder under a database in management studio, and going new->user
Hope that helps!
精彩评论