Connect to MSSQL using Windows Credentials

In order to connect to MSSQL Server using Windows Credentials you need to connect using connection URL like this:
jdbc:sqlserver://sampleserver;database=sampleDB;authenticationScheme=NTLM;integratedSecurity=true;domain=INFOGIX
User and password credentials are supplied as normal.
source

1 Like