First I add myself as an sa in the remote server userID='joe' pwd='abc'
then I do this in master of the primary server
EXEC sp_addlinkedserver
@server = 'svrRemote',
@srvproduct = '',
@provider = 'SQLOLEDB',
@provstr = 'DRIVER={SQL Server};SERVER=serverDEF;UID=joe;PWD=abc;'
after running this sp I can see svrRemote in the LinkedServer section of
Enterprise Manager. But when I try to open it - I get the message "server
doesn't exist or access denied".
So I run
sp_addlinkedsrvlogin 'svrRemote'
but still nothing. What do I need to do to create this linked server?
Thanks
Rich
EXEC sp_addlinkedserver 'myRemoteServer' --spelled correctly
then
exec sp_addlinkedsrvlogin 'myremoteServer,'false',NULL,'joe','abc'
now I can read data on the linked server from the primary server as follows
--from primary server
select count(*) from myremoteServer.DBonRemoteServer.dbo.tbl1
returns a count of rows