同步不同数据库的2个表-MySQL
我在数据库表中有一个包含某些医疗信息的表。我爬行&每天解析它们并将其存储在我的本地数据库的表中。
假设最初有 1500 条记录,今天我的本地计算机上又添加了 100 条记录。
现在,我有一个服务器,我需要在其中推送这些记录(因此数据库是不同的)。我昨天复制了数据库。因此,服务器数据库表现在有 1500 个条目。如何将新的 100 个条目同步到实时应用程序?
请注意,我无法从本地计算机中删除旧条目,否则它将被一次又一次地抓取。
I've a table with certain medical information in a database table. I crawl & parse them daily and store it in that table of my local database.
Suppose there were 1500 records initially, today 100 more records are added on my local machine.
Now, I've a server in which I need to push those records (so the database is different). I copied the database yesterday. So, the server database table has 1500 entries now. How can I sync the new 100 entries to the live application?
Please note that I cannot delete old entries from my local machine else it will be crawled again and again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要使用“SELECT ... INTO OUTFILE”和“LOAD DATA INFILE INTO TABLE”命令。
编辑:详细说明...
给定表结构:
和一些虚假数据:
您将使用以下命令:
要自动化这两个命令,您可以使用 bash 脚本/批处理文件调用 mysql 首先使用第一个语句连接到本地服务器,然后到执行第二个的远程服务器。
You may want to use 'SELECT ... INTO OUTFILE' and 'LOAD DATA INFILE INTO TABLE' commands.
Edit: Elaboration...
Given the table structures:
And some bogus data:
You would use the following commands:
To automate the two, you can use a bash script / batch file calling mysql connecting first to the local server using the first statement, then to the remote server executing the second.
您想要在服务器和本地计算机之间设置复制 - 请参阅 参考文档了解详细信息。
You want to set up replication between the server and your local machine -- see the reference documentation for details.