Reputation: 18305
I am using MSSQL as my transactional database. This database has 200+ tables with about 25 tables that hold 1M plus records. I want to replicate the data with the same structure into a MySql database for reporting. Is there a tool or method that can do this in a fairly real time manner?
Upvotes: 3
Views: 4891
Reputation: 332581
Use SQL Server's Linked Server to access MySQL from SQL Server.
Upvotes: 2