I have an (.Net Console App) EXE which connects to various SQL databases using SQL server Authentication with appropriate credentials. Now there is change required in the EXE to use windows authentication and use the Network Credentials to log in SQL server. (All SQL servers are on diffrent locations) I have the network credentials with me, but am confused how to connect to remote SQL server using these and retrive data from that. Please help.
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
migrated from stackoverflow.com Feb 8 '12 at 13:44
|
The only change required is in the connection string: remove the More information can be found here. |
|||
|
|
|
You need to modify your connection strings to follow the below format for a Trusted Connection:
And then run your application in the security context of the domain user. |
|||
|
|
|
Your app.config file should use Integrated Security in your connections strings. |
|||
|
|