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

后端 未结 6 1365
走了就别回头了
走了就别回头了 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:46

    You could:

    • backup and restore the database
    • detach and re-attach the database
    • use tools like Red-Gate SQL Compare for structural and Red-Gate SQL Data Compare for data comparison and syncing
    • you could roll your own, using SQL statements and/or SMO (SQL Server Management Objects)
    • probably a gazillion other ways to do this.....

提交回复
热议问题