同步 joomla mysql 和 powerbuilder sql Anywhere 数据库
你好! 我需要同步2个数据库。我有一个带有 Xampp (schoolserver) 的 Windows 2000 Server。 你知道一些方法来实现这一点吗?
我想如下: 1.在php脚本或c#脚本中写入数据 2.让类似cronjob(不知道Windows窗体)之类的东西运行并检查两个数据库。
有更好的办法吗?
Hallo!
I need to synchronize 2 Databases. I have a Windows 2000 Server with Xampp (schoolserver).
Do you know some ways to realize this?
I thought following:
1.Write the data in the php script or c# script
2. let something like a cronjob(dont know the windows form) run and check both databases.
Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你用Powerbuilder吗? Powerbuilder 有一项名为 数据管道,可用于在表之间迁移/管道数据。源表&目的地不必位于同一个 DBMS 中。在您的情况下,您可以将数据从 mysql 通过管道传输到 sqlanywhere &反之亦然。
您是否考虑过使用 bcp 实用程序导出数据然后将其导入到目标数据库?
Do you use Powerbuilder? Powerbuilder has a feature called data pipeline that you can use to migrate/pipe data between tables. The source table & destination don't have to be in the same DBMS. In your case you could pipe your data from mysql to sqlanywhere & vice versa.
Have you considered using a bcp Utility to export the data then import it to the destination database?