Re: Connecting to SQL Server
Thread moved to 'Database Development' forum
1. If you are using a named instance, you must specify it (because it is effectively a different server) at the end of the Data Source (eg: Data Source=192.168.1.2, 1433\Instance; ).
2. If there isn't a default instance, the server won't be found.
3. You should never use the sa account for anything except high-security DBA activities. You should be using the database user accounts you created.
Re: Connecting to SQL Server
Might also try specifying the name of the server, not the IP address.... and 1433 is the default port I believe, and so not necessary to specify it.
-tg