I'm working on supporting postgresql to an existing application that currently uses Microsoft SQL Server. So far i have converted all tables and stored procedures to plpgsql.
I want to test the results on both both DBs and ensure that both results match. ive tested the tables using a linked server and triggers on postgresql. However this is redundant and will continue to be when testing my 140 stored procedures and postgresql functions.
Is there an easier way or idea to compare the results and also the table changes made to ensure both produce the same output. Any insight would be helpful.