How to copy data and database tables from one database to another

后端 未结 6 1359
走了就别回头了
走了就别回头了 2021-01-23 04:06

Is there any way that I can copy all the data and database tables (and other objects) from one server table to other server?

To make those things as automated. so that e

6条回答
  •  时光说笑
    2021-01-23 04:58

    You could also try out ApexSQL Script, a database migration tool, to script objects and data from one instance and execute it on another instance.

    Also you can use ApexSQL Diff and ApexSQL Data Diff, SQL schema and data compare tools, to copy structure and data from a source to destination.

    Disclaimer: I work for ApexSQL

    Hope this helps

提交回复
热议问题