Forum Replies Created

Viewing 5 posts - 16 through 20 (of 20 total)

  • RE: Adding Linked Servers

    Access is denied.

    the DSN is a system DSN, sorry.

  • RE: Adding Linked Servers

    Nope. C,D & E only. So there are two things going on here. The catalog is wrong and the DSN file Schedule64 was saved to the Z...

  • RE: Adding Linked Servers

    Changed code to the following...

    /* Add the Access database to a named linked server */

    EXEC sp_addlinkedserver

    @server=N'AccessSchedule'

    ,@srvproduct=N'Access'

    ...

  • RE: Adding Linked Servers

    For Access I went back to my original setup.

    exec sp_addlinkedserver @server=N'AccessSchedule'

    ,@srvproduct=N''

    ,@provider=N'Schedule'

    ,@datasrc=N'LocalServer'

    exec sp_addlinkedsrvlogin AccessSchedule,False,NULL,Admin,NULL

    Where Schedule is the name of a DSN file on the SQL server

    Now when I run...

  • RE: Adding Linked Servers

    I think I have a configuration issue with the network.

    BTW I have recreated the AccessSchedule linked server using..

    exec sp_addlinkedserver @server=N'Access'

    ,@srvproduct=N''

    ...

Viewing 5 posts - 16 through 20 (of 20 total)