can you write commit in triggers?

Answers were Sorted based on User's Feedback



can you write commit in triggers?..

Answer / pradeep mishra

yes but with autonomous transaction

Is This Answer Correct ?    10 Yes 0 No

can you write commit in triggers?..

Answer / guru

----------- without AUTONOMOUS_TRANSACTION

CREATE or REPLACE TRIGGER parts_trig
BEFORE INSERT ON parts
FOR EACH ROW
BEGIN
INSERT INTO parts_log VALUES(:new.pnum, :new.pname);
END;
/
INSERT INTO parts VALUES (1040, 'Head Gasket');
COMMIT;
INSERT INTO parts VALUES (2075, 'Oil Pan');
ROLLBACK;

SELECT * FROM parts ORDER BY pnum;
SELECT * FROM parts_log ORDER BY pnum;

----------- using AUTONOMOUS_TRANSACTION

CREATE or REPLACE TRIGGER parts_trig
BEFORE INSERT ON parts FOR EACH ROW
DECLARE
PRAGMA AUTONOMOUS_TRANSACTION;
BEGIN
INSERT INTO parts_log VALUES(:new.pnum, :new.pname);
COMMIT; -- only for AUTONOMOUS_TRANSACTION
END;
/
INSERT INTO parts VALUES (1040, 'Head Gasket');
COMMIT;
INSERT INTO parts VALUES (2075, 'Oil Pan');
ROLLBACK;
/


Please Check This


Thanks

Is This Answer Correct ?    6 Yes 0 No

can you write commit in triggers?..

Answer / selvam.p

No, In normal condition, commit or rollback inside the
trigger is not possible.

Is This Answer Correct ?    5 Yes 2 No

can you write commit in triggers?..

Answer / sudhir

by default Trigger doesnt allow a commit;

however we can create a stored procedure which will only do
commit.

create or replace procedure to_commit_trigger
begin
commit();

end to_commit_trigger


now execute this stored procedure to_commit_trigger inside a
trigger to perform a commit. However it will cause serious
performance issues.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Oracle General Interview Questions

What is rich query?

0 Answers  


4. Using a set operator, display the creditor number of all creditors who have ever been paid.

2 Answers   Wipro,


When do you get a .pll extension in oracle?

0 Answers  


What is Database Trigger ?

1 Answers  


How do I limit the number of rows returned by an oracle query after ordering?

0 Answers  






What is hash cluster in oracle?

0 Answers  


SELECT * FROM (SELECT TITLE FROM MOVIE ORDER BY RANK DESC) WHERE ROWNUM > 4; when i run the above query .it produces output as NO ROWS SELECTED.why ?plz any one help me

6 Answers   TCS,


Give syntax for SQL and ORACLE joins.

0 Answers   TCS,


what is the difference between authorization and authentication?

4 Answers   MAHINDRA, PUCIT,


What are the trigger associated with image items ?

1 Answers   Oracle,


How many categories of data types in oracle?

0 Answers  


How to sort the query output in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)