I have two databases, one is in SQL Server and other is in MySql. I want to insert data into MySQL table while an insertion occurs in the SQL Server table. Is it possible using a trigger in SQL Server? Please give me an answer?
1 Answer
You can create connection from MSSQL to MySQL by going through this article on connecting MSSQL to MySQL.
After successfully creating connection from MSSQL to MySQL, you can write trigger to insert data in MySQL database using INSERT query in your trigger.
Hope it helps...