SQL表到另一个数据库
我有 2 个 SQL 数据库(相同)。我想要将一个数据库中的表复制到另一个数据库。它们同名,可以覆盖原表。
I have 2 databases on SQL (identical). I want a table from one database to be copied to the other database. They are both the same name and the original table can be overwritten.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您希望表持续同步,您可以使用事务复制。它将不断地将数据从一个数据库的一个表复制到另一个数据库的另一个表。
有关更多设置详细信息,请参阅此处:
http://www.databasejournal.com/features/mssql/article.php/1438201/Setting-Up-Transactional-Replication-A-Step-by-step-Guide.htm< /a>
If you want the tables in sync continuously, you can use Transactional Replication.It will keep on copying the data from one table one db to another table of other DB.
Refer for further setup details over here:
http://www.databasejournal.com/features/mssql/article.php/1438201/Setting-Up-Transactional-Replication-A-Step-by-step-Guide.htm
假设没有计算列、Identity 列或 FK 约束,类似下面的内容应该可以工作。
Assuming no computed columns, Identity columns or FK constraints something like the following should work.