|
| Total Answers and Comments: 3 |
Last Update: May 12, 2005 |
|
| | |
|
Submitted by: Scott By utilizing savepoints, you are able to rollback to a given point in your processing. An example of this would be: ... COMMIT; INSERT UPDATE SAVEPOINT A DELETE UPDATE INSERT SAVEPOINT B INSERT INSERT DELETE SAVEPOINT C ROLLBACK TO SAVEPOINT B I only lost the two inserts and delete. Had I not placed savepoints in my processing and used a rollback, I would have lost my entire transaction back to the last good commit.
Above answer was rated as good by the following members: premramana | Go To Top
|