I have done subsequent research on how to connect to SQL Server remotely and even configured it to allow remote connections.
Now I can connect to my sql server instance on remote computer through SSMS but while connecting through my vb.net application I get the exception
Login failed for USER.The user is from an untrusted domain and cannot be used with windows authentication
Please help me to tackle this problem.
Here is my connection string
Server=ACLMUMBAI;Database=Agrichemdb;User ID=xyz;Password=xyz;Trusted_Connection=Yes;
Thanks in advance.
Trusted_connection=yes(which means: use the current Windows credentials to log into SQL Server) and defineUser ID=xyz;Password=xyzat the same time. Which one is it that you really want?? Use the current Windows credentials, or the UserID/Pwd specified?? Pick one - not both – marc_s Jul 27 '12 at 8:39