etl - minus query in sql developer -
i have 2 database connections in sql developer active lets db1 , db2. working on etl validation. want check if data table1 of db1 populated correctly in table2 of db2.
to access tables 2 connections how can write query? on helpful
there common ways validate if etl correct:
- you can run 2 queries calculate line counts separately against table1@db1 , table2@db2, , compare line counts between them.
- or perform aggregate functions, such sum(), avg()...etc on tables in db1/db2.
Comments
Post a Comment