Comparing records in duplicate tables in different oracle databases

后端 未结 2 1171
野的像风
野的像风 2021-01-26 04:17

I have the same table in two oracle databases. One is a staging database that has it\'s record loaded into the primary. I want to go through the staging table and see if there a

2条回答
  •  不知归路
    2021-01-26 05:02

    To get the ones where something has changed you can use:

    SELECT * FROM "staging_table"
    MINUS
    SELECT * FROM "table";
    

    So, assuming that the table has a primary key then you can do

    DELETE FROM "table"
    WHERE primary_key_column
          NOT IN 
          ( SELECT primary_key_column
            FROM (
              SELECT * FROM "staging_table"
              MINUS
              SELECT * FROM "table"
            )
          );
    

提交回复
热议问题