Home Forums SQL Server 2012 SQL 2012 - General Need to export one table to another database in a different server/db RE: Need to export one table to another database in a different server/db
Bouke Bruinsma
SSCrazy
Points: 2197
More actions
February 28, 2015 at 1:28 am
#1780861
What I have done in a similar situation is: create a temp database, select * into temp.temptable, backup the db, restore it on the target instance and use it there to copy data.
Also a linked server might be an option.