Export table data from one SQL Server to another

后端 未结 12 720
伪装坚强ぢ
伪装坚强ぢ 2020-12-02 07:29

I have two SQL Servers (both 2005 version).

I want to migrate several tables from one to another.

I have tried:

  • On source server I have righ

12条回答
  •  Happy的楠姐
    2020-12-02 07:40

    If you don't have permission to link servers, here are the steps to import a table from one server to another using Sql Server Import/Export Wizard:

    • Right click on the source database you want to copy from.
    • Select Tasks - Export Data.
    • Select Sql Server Native Client in the data source.
    • Select your authentication type (Sql Server or Windows authentication).
    • Select the source database.
    • Next, choose the Destination: Sql Server Native Client
    • Type in your Server Name (the server you want to copy the table to).
    • Select your authentication type (Sql Server or Windows authentication).
    • Select the destination database.
    • Select Copy data.
    • Select your table from the list.
    • Hit Next, Select Run immediately, or optionally, you can also save the package to a file or Sql Server if you want to run it later.
    • Finish

提交回复
热议问题