Note: TRUNCATING TABLE cannot be UNDONE
Note: Netezza “soft” deletes until the groom process runs. i.e. deleted data is really still there.
Note: Netezza Updates are just soft deletes and inserts. So, they can be recovered too
Typically, when you run a select you will not see rows that have a deletexid not equal to zero. To change that, set the below option
set show_deleted_records = trueHere is a simple select statement:
select createxid,deletexid, * from table Netezza Createxid and DeletexidIf you want to see just the deleted rows , just select where deletexid is not zero
select createxid,deletexid, * from table where deletexid !=0Once you can see your deleted data, and figure out which transaction you are trying to undo, you can simply re-insert the data
insert into table select * from table where deletexid=142233; –transaction id from delete.To undo an update, just re-insert the deleted rows and delete the inserted rows.
insert into table select * from table where deletexid=146443 ;–transaction id from update delete from table where createxid=146443; –transaction id from updateTo undo an insert, use the below SQL
delete from table where createxid=1434443; –transaction id from insert