Take the 2-minute tour ×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.

I have one PostgreSQL database and its data are being changed regularly. I want to sync all its data with my SQL Server database. One thing I can do is use query to check all required tables and columns whether data is same or changed. If changed, then update the same in SQL Server.

Is there any other method is available(like replication)? Or any synchronization software available?

share|improve this question

1 Answer 1

  1. A tool like Daffodil Replicator or SymmetricDS is designed to sync between different brands of databases.

  2. You could try the tds_fdw Foreign Data Wrapper, which may be able to write to SQL Server.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.