Comparing records in duplicate tables in different oracle databases

后端 未结 2 1169
野的像风
野的像风 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 04:58

    Something like this should work

    delete from stagingtable
    where id in
    (select id
    from stagingtable st join productiontable pt on st.id = pt.id
    and st.nextfield = pt.nextfield
    etc
    )
    

提交回复
热议问题