I have a database on mysql (request from applestore) and now I must rewrite one table to ms sql. It's easy to rewrtie old rows, but when new row appear on mysql I need get this to ms sql table, and I don't know how to connect this and do it. Someone can hel me?
1 Answer
Why don't you try with triggers??..you need to create a trigger which insert the same data in a table when it is inserted in another table.
3 Comments
margott
I know that I need trigger but how to create trigger in mysql which will fire insert on ms sql server database?
Nadim
please have a look at this link: http://stackoverflow.com/questions/13080765/insert-data-from-mssql-to-mysql-using-trigger
Sébastien
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post.
triggersorjobs, if you clarify your actual requirements maybe with a descriptive example you might get more help :)