I am working through a data cleansing project to cleanup a master data table. I have identified a set of records that I would like to delete based on the below workflow. This is a test workflow, and the final logic will become more complex, but there will always be an output dataset to be deleted.
I would like to delete the all the records (397,400) specified in the duplicate branch. Can anyone suggest how this could be done?
Thx.
Solved! Go to Solution.
A couple of ideas to go about it (there's probably others)...
I like this. I was hoping there would be a bit more of a direct way to do this, but this is certainly a workable answer. Thx.
Am trying to delete the Oracle DB records using Dynamic Input query
i have given "select * from table name where COLUMN_NAME in('X')" in TABLE/Query
and in post SQL statement "Delete from table name where COLUMN_NAME in('X')"
i have used 'X' as update where clause
But getting error as "ORA-01722:invalid number"
Can anybody have solution ?