> I am new to linked servers and basically I want to query data from several
> tables on server A and then insert that data into a simple table on server B.
[quoted text clipped - 19 lines]
> different app but when he helps me he is unable to get this working either.
> That tells me we shouldn't need Active Directory, etc as mentioned above.
follow up:
it appears I can issue the following commands and obtain data within Query
Analyzer connected to Server A. Why then am I having such a hard time
attempting to connect within EM.
EXEC sp_addlinkedserver @server='B', @srvproduct='',@provider='SQLOLEDB',
@datasrc='B\instance1'
GO
EXEC sp_addlinkedsrvlogin 'B', 'false', NULL, 'BUID', 'Bpwd'
GO
SELECT * FROM OPENQUERY(B, 'SELECT * FROM database.owner.table')
EXEC sp_droplinkedsrvlogin 'B', NULL
GO
sp_dropserver 'B', 'droplogins'
Go