this is the situation: I have two server: development server(intranet) and production server(internet). Authors are inserting data in the production server, on daily basis. Developers are upgrading the DB structure according to the new web app releases projects.
问题在于:当发布新的网络数据时,我必须使在线数据与离线数据(更新数据)同步。 在升级在线文字和制版结构之前。
Is there a better way to perform this merge than a sort of manual/editing/updating via some sql scripts? Doing it manually is also risk-prone since: sometimes I may lose track of exactly what tables contain newer data and have been updated since the last upgrade...
注:MySQL复制胜出是解决办法,因为这意味着它将更新数据,但摧毁关于发展行的新结构。
Many thanks in advance