Answer Posted / 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 View All Answers
Is the After report trigger fired if the report execution fails ?
What are triggers in oracle?
How to assign values to data fields in record variables?
How can I create database in oracle?
Explain compound trigger in oracle?
How to pass a parameter to a cursor in oracle?
Can we use oracle pl/sql block in core java? if so how? pls get back to me .....
Is it possible to set second Primary Key Constraint in a table in Oracle Database ?
What is an oracle transaction?
Explain the difference between a procedure and a function? What do you understand by those terms?
Difference between open_form and call_form in oracle.
How do I connect to oracle database?
How to use group functions in the select clause using oracle?
How to start a specific oracle instance?
How to loop through data rows in the implicit cursor?