


Is there a rollback procedure? How does it work?
All database modifications are recorded in transaction segments with before/after images in the log. When restarting after a DBMS failure, any completed transactions are redone, if any, and open transactions are rolled back.


