I somehow thought rollback means undo the last action. This is what I did:
SQL> update owns
2 set DRIVER_ID=99999999
3 ^[[A^Z;
4 rows updated.
SQL> select * from owns;
DRIVER_ID LICENSE
-------------------- ----------
99999999 ABC222
99999999 MSA369
99999999 MZZ2828
99999999 ZGA123
SQL> rollback
2 ;
Rollback complete.
SQL> select * from owns;
no rows selected
Is everything gone forever? All my data too? Thanks for any advice and help