SQL表到另一个数据库

发布于 2024-09-06 07:27:05 字数 60 浏览 2 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

与往事干杯 2024-09-13 07:27:05
DELETE FROM `target_database`.`table_name`

INSERT INTO `target_database`.`table_name` SELECT * FROM `source_database`.`table_name`
DELETE FROM `target_database`.`table_name`

INSERT INTO `target_database`.`table_name` SELECT * FROM `source_database`.`table_name`
如梦 2024-09-13 07:27:05

如果您希望表持续同步,您可以使用事务复制。它将不断地将数据从一个数据库的一个表复制到另一个数据库的另一个表。

有关更多设置详细信息,请参阅此处:

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

梦纸 2024-09-13 07:27:05

假设没有计算列、Identity 列或 FK 约束,类似下面的内容应该可以工作。

BEGIN TRAN
DELETE FROM SixthSenseUsers.dbo.college_survey_questions 

INSERT INTO SixthSenseUsers.dbo.college_survey_questions 

SELECT * FROM test.dbo.college_survey_questions

COMMIT

Assuming no computed columns, Identity columns or FK constraints something like the following should work.

BEGIN TRAN
DELETE FROM SixthSenseUsers.dbo.college_survey_questions 

INSERT INTO SixthSenseUsers.dbo.college_survey_questions 

SELECT * FROM test.dbo.college_survey_questions

COMMIT
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文