Re: ad hoc replication for 3 X 40 000 rows

2009-10-22 Thread Sydney Puente
> However sync's from MS SQL to MYSQL are required every 24 hours after the > initial > dataload. > And this has me puzzled. > Advice anyone? > Please ;-) If there's a auto-inc key, you can find the last one from the MySQL_table then SELECT ... from MSSQL_table where key > found_key. Otherwise

Re: ad hoc replication for 3 X 40 000 rows

2009-10-21 Thread Don Read
On Wed, 21 Oct 2009 16:48:21 + (GMT) Sydney Puente said: > However sync's from MS SQL to MYSQL are required every 24 hours after the > initial dataload. > And this has me puzzled. > Advice anyone? > Please ;-) If there's a auto-inc key, you can find the last one from the MySQL_table then

Re: ad hoc replication for 3 X 40 000 rows

2009-10-21 Thread kabel
On Wednesday 21 October 2009 12:48:21 Sydney Puente wrote: > Hello, > > I have a task in hand to pull 3 tables of data from a MS SQL db and > populate a mysql 5.x db. So I plan to use perl DBI for yank the data out of > MS SQL and push it into MYSQL. I think I can handle the mysql table > creation

ad hoc replication for 3 X 40 000 rows

2009-10-21 Thread Sydney Puente
Hello, I have a task in hand to pull 3 tables of data from a MS SQL db and populate a mysql 5.x db. So I plan to use perl DBI for yank the data out of MS SQL and push it into MYSQL. I think I can handle the mysql table creation and any tweaking that might be required to carry out the initial da