vote up 0 vote down star

We have a user on a different domain who is trying to use an Access App front-end (Access 2003) using SQL Server 2008. He uses ODBC. When the database was in SQL Server 2000, he was able to connect, but is getting an error now.

The connection string in Access is

Public Const CONNECTSTR As String = "ODBC;DRIVER=SQL Server;APP=Microsoft Open Database Connectivity;Trusted_Connection=Yes;SERVER=FullyQualifiedServerName;Database=DBName"

He has set up the ODBC and it will connect. But when he starts Access, he gets the following error:

Connection Failed:
SQLStage: '28000'
SQL Server Error: 18452
[Microsoft][ODBC SQL Server Driver][SQL Server]Login failed.  The login is 
from an untrusted domain and cannot be used with Windows authentication.

Our DB person has been working with me, and then asked me to set up Access so it uses a SQL connection and not an integrated connection. How is the connection string modified to do that? (I'm not an Access wizard, obviously)

Update: This was resolved by our network people, and I have no idea what they did. I'm sorry.

flag

1 Answer

vote up 1 vote down

To allow for SQL logins change the Trusted_Connection=Yes; part of your connection string to User ID=username;Password=password;.

Obviously adding the login details provided by your DBA.

link|flag
We tried that, but not only did it not work, we then lost the knowledge of who was running the app. I guess we could have made a copy for each of those users outside our domain. – thursdaysgeek Oct 15 at 23:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.