Copy table to a different database on a different SQL Server

后端 未结 6 991
心在旅途
心在旅途 2020-12-01 10:36

I would like to copy a table from one database to another. I know you can easily do the following if the databases are on the same SQL Server.

SELECT * INTO          


        
6条回答
  •  北海茫月
    2020-12-01 11:13

    Microsoft SQL Server Database Publishing Wizard will generate all the necessary insert statements, and optionally schema information as well if you need that:

    http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A

提交回复
热议问题