SQL Server for PostgreSQL

I need to create a trigger in SQL Server.

The trigger works:

If I find a new line where T = 'A'; then add this line to PostgreSQL table.

Can I create it without software?

(I know how to create a trigger, but how do I create a connection between the two servers?

+2


a source to share


1 answer


You will need to configure postgres as a linked server with a SQL server.



See this article to see how.

+1


a source







All Articles