Hi,
I have an MS Access DB, linked to SQL Server, no problem.
Except remote users can't access it as the are not logged onto the domain.
I decided to write my own File DSN and link the tables using that, so it used hardcoded UserID & Password.
Only no matter what settings I use in the DSN, they are not all being used and it keeps defaulting to "trusted connection" using "Windows Authentication"
How do I make access use the credentials supplied in the DSN....here is the DSN....
bold = Names have been changed to protect the innocent
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
I have an MS Access DB, linked to SQL Server, no problem.
Except remote users can't access it as the are not logged onto the domain.
I decided to write my own File DSN and link the tables using that, so it used hardcoded UserID & Password.
Only no matter what settings I use in the DSN, they are not all being used and it keeps defaulting to "trusted connection" using "Windows Authentication"
How do I make access use the credentials supplied in the DSN....here is the DSN....
Code:
[ODBC]
DRIVER=SQL Server
UID=[b]userid[/b]
PWD=[b]password[/b]
Network=DBMSSOCN
DATABASE=[b]database-name[/b]
APP=Microsoft Office 2003
SERVER=[b]I.P. of Server[/b]
Description=[b]database description[/b]
Trusted_Connection=No
bold = Names have been changed to protect the innocent
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.