InterviewSolution
Saved Bookmarks
| 1. |
What Is A Savepoint Command? |
|
Answer» The SAVEPOINT command is used to set a point within a transaction to which you MAY rollback. This command helps in CANCELLING the portions of the current transaction. Using ROLLBACK with the SAVEPOINT TO clause, a transaction can be undone in parts RATHER than rolling BACK the entire transaction. The SAVEPOINT command is used to set a point within a transaction to which you may rollback. This command helps in cancelling the portions of the current transaction. Using ROLLBACK with the SAVEPOINT TO clause, a transaction can be undone in parts rather than rolling back the entire transaction. |
|