hi,
I'm trying to connect to a password protected Access database through
SQLServer 7.0
Now Microsoft recommends using:
EXEC sp_addlinkedserver 'Foodmart', '','Microsoft.Jet.OLEDB.4.0',
'LinkedServer'
EXEC sp_addlinkedsrvlogin 'Foodmart', false, NULL, 'Admin', NULL
The sp_addliinkedserver works fine And so does the sp_addlinkedsrvlogin as
long I use 'Admin' with a password NULL. However, when I attempt to use
another login with a password the srvlogin command fails. (The login and
password are created in the Access Database)
What am I missing?
Thanks in advance
Greg Westendorf