Define Savepoints in a transaction

Define Savepoints in a transaction.

- SAVEPOINT names and marks the current point in the processing of a transaction.
- Savepoints let you roll back part of a transaction instead of the whole transaction.
- The number of active savepoints for each session is unlimited.
- When you roll back to a savepoint, any savepoints marked after that savepoint are erased.
- The savepoint to which you roll back is not erased.
- A simple rollback or commit erases all savepoints.
- If you mark a savepoint within a recursive subprogram, new instances of the SAVEPOINT statement are executed at each level in the recursive descent, but you can only roll back to the most recently marked savepoint.
- Savepoint names are undeclared identifiers.
- Reusing a savepoint name within a transaction moves the savepoint from its old position to the current point in the transaction.
- This means that a rollback to the savepoint affects only the current part of your transaction.
What are filter class in java?
What are filter class in java? - The filter class in java can manipulate request before reaches to the web server. It can also manipulate response before it reaches the client browser......
How do we consume a web service in java?
How do we consume a web service in java? - Client can consume web services in java in 3 ways...
What is Reflection API in Java?
What is Reflection API in Java? - Reflection API allows examining, modifying the run time behaviour of java applications running in the JVM...
Post your comment