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

  • 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.