Move a table from one database to another database SQL Server

后端 未结 3 1025
天涯浪人
天涯浪人 2021-02-07 01:59

I have a database DB_1 which has an empty table T1 with 5 columns.

I want to move this table to another database DB_2 on the same

3条回答
  •  爱一瞬间的悲伤
    2021-02-07 02:28

    In SQL Server Management Studio you have Import and Export Wizard :

    1. Right click on db name(DB_2)
    2. Tasks
    3. Import Data
    4. Choose data source (DB_1)
    5. Choose destination (DB_2)
    6. Choose copy data from one ore more tables
    7. Choose your table (T1)
    8. Finish

提交回复
热议问题