Reputation: 3073
I have a web interface (php front end, mysql backend) running in the same domain as a sql server database. I need to frequently (daily or weekly) query sql server and then load that data into mysql. What would be the most efficient way to do this?
Upvotes: 0
Views: 1824
Reputation: 22001
you could use the SQL Server Agent
to run a scheduled job that would select and export the data direct to your MySQL server.
Like this example (SQL Server Management Studio 2008 scheduled export to MS Access), but exporting to MySQL instead of MS Access
Upvotes: 1