更新两个mysql查询之间的差异

时间:2013-01-29 10:40:02

标签: mysql cron sync

我正在开发一个Web应用程序,它使用来自远程数据库的一些数据,我在这里拥有只读权限。此数据库中的数据SATMANAGE每5分钟更新一次。对于我的应用程序,我需要一个名为IDIRECT_STATUS的远程数据库表中的一些列。

大气压。我有一个cron作业从CLI执行查询并将数据存储在.txt文件中。然后它截断本地表并使用LOAD DATA LOCAL INFILE重新填充更新的数据。

到目前为止,这已经很好了。随着应用程序变得越来越复杂,我需要一种改变本地“遥控器”表的方法。虽然我现在截断了本地的“遥控器”表。我只需要使用远程“IDIRECT_STATUS”表中的更新数据更新表。这使我能够在本地“遥控器”表中拥有远程“IDIRECT_STATUS”表中不存在的列。

这就是我要找的东西。在左侧是远程表。我想保持右侧,本地数据库,在左侧,远程数据库,在相应的列上更新。这不会截断本地表,以便其他本地列保持状态。

IDIRECT_STATUS                  remotes
-------------------------------|-------------------------------
id                             | id
netmodem_name                  | netmodem_name
nms_name                       | nms_name
ip_addr                        | ip_addr
serial_no                      | serial_no
last_date_online               | last_date_online
last_updated                   | last_updated
network_name                   | network_name
network_id                     | network_id
is_mobile                      | is_mobile
latitude                       | latitude
longitude                      | longitude
lnb_name                       | lnb_name
buc_name                       | buc_name
upstream_qos_profile_name      | upstream_qos_profile_name
downstream_qos_profile_name    | downstream_qos_profile_name
inroute_maximum_data_rate      | inroute_maximum_data_rate
outroute_maximum_data_rate     | outroute_maximum_data_rate
upstream_cir                   | upstream_cir
use_upstream_cir               | use_upstream_cir
crtp_enabled                   | crtp_enabled
INROUTE_GROUP_ID               | INROUTE_GROUP_ID
                               | excluded           (Not updated or deleted)
                               | excluded_to        (Not updated or deleted)
                               | shipowner_id       (Not updated or deleted)
                               | etc...             (Not updated or deleted ...)

希望你真棒的人能够帮助我。我有什么不清楚请告诉我,我会尽快编辑这个问题!

1 个答案:

答案 0 :(得分:1)

我在左表中看到了一个名为last_updated的字段。我建议使用一个简单的perl或php脚本来执行以下操作的加载:

a)从本地表中获取最新的更新时间 b)从最后一次插入后更新的远程表中选择数据 c)使用远程数据更新本地表

在PHP代码中,它看起来像这样:

<?
// select the last update time
$sql = "select max(last_updated) as last_update_time from remotes";
$r = mysql_query($sql);
$row = mysql_fetch_assoc($r);
// save the last upate time
$last_update_time = $row['last_update_time'];

// get newer rows from the remote database
$sql = "select * from IDIRECT_STATUS where last_updated > ".$last_update_time;
$r = mysql_query($sql);
while ($row = mysql_fetch_assoc($r)) {
  // generate update queries
  $sql = "update remotes set netmodem_name='".$row['netmodem_name']."', ... last_updated='".$row['last_updated']."' where id=".$row['id'];
  // execute query
  mysql_query($sql);
}
?>