How to call a stored procedure inside a trigger? Give an
example.
Answer Posted / pardeep
Using Call keyword we can call procedure inside trigger.
e.g.
CREATE OR REPLACE TRIGGER foo
BEFORE DELETE OR INSERT OR UPDATE ON <<table_name>>
FOR EACH ROW
BEGIN
CALL PROCEDURE_NAME();
END;
/
| Is This Answer Correct ? | 16 Yes | 5 No |
Post New Answer View All Answers
What privilege is needed for a user to create indexes in oracle?
What is the difference between hot backup and cold backup in oracle?
How do I know if oracle client is installed on windows?
what is the dual table in oracle?
A table t is there.If you perform insert ,update and delete then the trigger will fire.What is the minimum no of trigger required for a table.
In not less than 100 words what's the main difference between Rolap and Molap in ORACLE ?
what is a Nested Loop join?
What is a procedure in oracle?
What are the components of logical database structure in oracle database?
What is the exact use of Collections?
What is analyze command used for?
How to set a transaction to be read only in oracle?
Explain about functional dependency and its relation with table design?
Explain the use of analyse option in exp command.
What is a connect identifier?