I have two databases
- MS SQL Server (with the table
t1
) - MySQL Server (with the table
t2
)
I want to insert the data into table t2
on MySQL Server when some data inserted into table t1
on MS SQL Server.
I have already tried to create the linked server and use the trigger but it is not working.
How can I do that?