I need to set up a SQL Server trigger to connect to a remote mysql linux server and insert data into a table. Is there a way to do this?
I'm leaning towards triggers rather than scheduled tasks because the trigger will execute each time data is entered/updated in the SQL Server table and only 1 record will be passed to the MySQL table at a time, cutting down on large data transfers and creating a more 'realtime' transfer appearance.