views:

41

answers:

3

If I want to run this sort of query in SQL Server, how can I do the same query from one server I am connected to to another?

I tried adding "[ServerName1]." before "[DatabaseName1].[dbo]..." and "[ServerName2]." before "[DatabaseName2].[dbo]..." but that didn't seem to work.

INSERT INTO [DatabaseName1].[dbo].[TableName]
           ([FieldName])
     SELECT [FieldName] FROM [DatabaseName2].[dbo].[TableName]

Is this possible?

+3  A: 

Yes you would use the servername before the whole rest of objectname like: myserver.mydatabase.dbo.mytable

However you fisrt have to set up linked servers. Look up linked servers in BOL.

HLGEM
+1  A: 

If you have adhoc distributed queries enabled you can use OPENDATASOURCE. Setting up a linked server is another option. Not sure of the pros and cons of each approach.

INSERT INTO [DatabaseName1].[dbo].[TableName]
SELECT FieldName
FROM OPENDATASOURCE('SQLNCLI',
    'Data Source=Server\InstanceName;Integrated Security=SSPI')
    .DatabaseName2.dbo.TableName
Martin Smith
A: 

The best way to do this would be to create a "linked server" between the two. You will need appropriate permissions to do this.

Then it's just a matter of accessing the databases using your linkedserver name.

Ex: [linkedserver].databasename.dbo.tablename

To create a linkedserver, go to server objects->right click on linked servers->click on 'new linked server'.

SoftwareGeek