linked-server sql - access

Posted by user22121 on Server Fault See other posts from Server Fault or by user22121
Published on 2009-10-06T17:58:15Z Indexed on 2010/03/28 10:03 UTC
Read the original article Hit count: 547

Hi,

I have a SQL server 2000 and an Access database mdb connected by Linked server on the other hand I have a program in c # that updates data in a SQL table (Users) based data base access.

When running my program returns the following error message:

OLE DB provider 'Microsoft.Jet.OLEDB.4.0' reported an error. Authentication failed.
[OLE / DB provider returned message: Can not start the application. Missing information file of the working group or is opened exclusively by another user.] OLE DB error trace [OLE / DB Provider 'Microsoft.Jet.OLEDB.4.0' IDBInitialize:: Initialize returned 0x80040E4D: Authentication failed.] .

Both the program, the sql server and database access are on a remote server.

On the local server the problem was solved by running the following:

"sp_addlinkedsrvlogin 'ActSC', 'false', NULL, 'admin', NULL".

Try on the remote server the next, without result: "sp_addlinkedsrvlogin 'ActSC', true, null, 'user', 'pass'".

On the remote server and from the "Query Analyzer" sql update statements are working correctly.

Can you think of what may be the problem?

Thanks!

© Server Fault or respective owner

Related posts about sql-server-2000

Related posts about sql-server