Reputation: 7547
Normally the Insert query to import data would be:
Insert Into mytable
Select * From otherDB.dbo.Othertable
but problem is otherDB is not within my current server. It is on a different machine hosted online. Can you please tell what changes should be there to import it from different DB?
Upvotes: 0
Views: 1928
Reputation: 24046
Many options:
If you donot have direct access to the other server from your local server,
If you have access to remote server from local server then
If data to be imported for many tables then
Upvotes: 2