Dezigo
Dezigo

Reputation: 3256

SQL Server to PostgreSQL

I need to create a trigger in SQL Server.

Trigger works:

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

Is it possible to create it, without software?

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

Upvotes: 2

Views: 303

Answers (1)

Oded
Oded

Reputation: 499002

You will need to setup postgres as a linked server to SQL server.

See this article to see how to do so.

Upvotes: 1

Related Questions