MySQL Forums
Forum List  »  Newbie

Re: MySQL insert/update to SQL Server
Posted by: Peter Brawley
Date: September 03, 2015 02:22PM

The simplest way to do that in MySQL might be ...

1, have a MySQL export table, say

mysqlexports(id int unsigned primary key auto_increment, ts timestamp, targettable char(64), xmlcode text )

2, for each table for which you need to do this, write a Trigger that populates mysqlexports

3, write an app or a SQL Server Integration script to grab those xml blocks and do with them what needs to be done.

Options: ReplyQuote


Subject
Written By
Posted
September 03, 2015 11:56AM
Re: MySQL insert/update to SQL Server
September 03, 2015 02:22PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.