How to connect to a MSSQL server which has windows Authentication Enabled in it.

0
We have A MSSQL server hosted in our environment which has windows authentication enabled in it. We tried connecting to our database through The External Database connector Module but failed. Even though the credentials are correct it says unable to connect to database. Is it possible to connect to a MSSQL server which has windows authentication enabled ? If yes Is there anything in specific which we have to do ? 
asked
1 answers
0

As far as I know this is indeed not possible using connection strings. As you are connecting between servers, you require some impersonation if you want to use Windows Authentication, which is not easy to implement. I would suggest looking into the possibilities on the SQL Server side: allowing users with credentials to login.

Good luck!

answered