I am running into an issue trying to link from MS SQL 2000 to Sybase. I run the sp_addlinkedserver, which appears to work successfully:
exec sp_addlinkedserver @server='test',
@srvproduct = '',
@provider = 'msdasql',
@datasrc = 'Data Source=mySrc;UserID=usrID;Password=pwd',
@location =...
I have run into a very strange problem. Running MS Access 2003, SP3.
I am running a simple query with 2 tables, using an outer join, looking for a list of all records in table 1 where there is no corresponding entry in table 2:
SELECT Table1.key,
Table1.lastname,
Table1.firstname
FROM...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.