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

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

    I suggest you to take a look at "Visual Studio 2010 SQL Server Database Project". It provides you with great features to manage database team work. It allows you to create a local database and import the production database into the local database. From now on, you and your team can work on local database and when you are ready to deploy your changes to production database, Visual Studio 2010 synchronizes the local database with production database, So the production database will get the latest changes.

提交回复
热议问题