January 8, 2009 at 7:31 am
I have Two SQL Servers in the same Network, Server A and Server B
how i make a reference from the server A to Server B
ex. if i want to make a reference between Databases in the same server , i do this.
Select * from database..table
but how i do betwenn Servers ?????
thanks .
January 8, 2009 at 8:36 am
If they are set up as linked servers, you can just add the name of the server to the reference.
Servername.DatabaseName.Schema.Table .
If you don't want to use linked servers(not sure why you wouldn't), you can still use OPENQUERY.
January 8, 2009 at 9:54 am
Thanks a lot, it is already done ;);););););)
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply