将 SQL Server 数据持续推送到 MySQL

发布于 2024-08-30 02:06:34 字数 45 浏览 1 评论 0原文

有没有办法可以将 SQL Server 数据不断更新到 MySQL 数据库?

Is there a way I can have a constant update of my SQL Server data going to a MySQL database?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

沧笙踏歌 2024-09-06 02:06:34

到底可以接受多大的延迟将或多或少地指导您使用的解决方案的类型

  • 更新需要(接近)实时:您需要 (a) 将数据推送到 MSSQL 的同时也推送到 MySQL,或者 (b) 使用复制来做到这一点
  • 更新可能会延迟一段时间 :那么您可以将其放入 ETL 流程中,而不是尝试复制内容,其中您有几个选择,其中最好的可能是使用 SQL Server Integration Services (SSIS),您可以在其中设计 ETL 包以任何方式进行推送你想要

Exactly how big of a delay is acceptable will more or less guide the type of solution you use.

  • Updates need to be (near) real-time: you need to either (a) have whatever is pushing the data to MSSQL also push to MySQL at the same time, or (b) use replication to do it
  • Updates can be delayed a while: then instead of trying to replicate things you can make it into an ETL process, where you have a few options, the best of which is probably using SQL Server Integration Services (SSIS) where you can design ETL packages to do the push any way you want
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文