InterviewSolution
Saved Bookmarks
| 1. |
Is It Possible To Use Transaction Control Statements Such A Rollback Or Commit In Database Trigger?why ? |
|
Answer» It is not possible. As triggers are defined for each table, if you USE COMMIT of ROLLBACK in a TRIGGER, it affects LOGICAL TRANSACTION processing. It is not possible. As triggers are defined for each table, if you use COMMIT of ROLLBACK in a trigger, it affects logical transaction processing. |
|