Hi!
I am trying to access data from another server on my domain. Both servers are running SQL 2000.
On the first server I ran:
It appears to have created ok. Now I am trying to run:
and getting an 'Invalid Connection' error.
Do I need to add something to my linkedserver script? Like maybe a username/password or something?
I am trying to access data from another server on my domain. Both servers are running SQL 2000.
On the first server I ran:
Code:
exec sp_addlinkedserver
@server='SERVER1',
@srvproduct='SQL SERVER'
It appears to have created ok. Now I am trying to run:
Code:
select * from SERVER1.myDataBase.Dbo.myTable
and getting an 'Invalid Connection' error.
Do I need to add something to my linkedserver script? Like maybe a username/password or something?