cancel
Showing results for 
Search instead for 
Did you mean: 

How to Recover Accidentally Deletion

Former Member
2,685

I tried to find something on forum but, no success. I was manipulating data into Interactive SQL and accidentaly deleted a row. Is there any way to recover this row ? Like an Undo or somthing like this ? Thanks for your help.

Accepted Solutions (0)

Answers (1)

Answers (1)

Breck_Carter
Participant

The ROLLBACK statement is your "undo" in SQL... it will work until the the change is committed:

  • when an explicit COMMIT statement is executed,

  • when an implicit commit is performed; e.g., by a CREATE TABLE statement,

  • when you exit Interactive SQL with the commit_on_exit option set to 'ON' (the default).

See Executing COMMIT and ROLLBACK statements in Interactive SQL

Former Member
0 Kudos

Thanks Mr Breck, works very fine. It looks simple, but just before you know it. Thanks a lot again.