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
In Oracle Applications We are Using Sub Ledger Accounting. When we Transfer the Data all modules (AP,AR,CE,FA) to SLA We done Some customizations? What are They??
What is tns name?
Can you create a synonym without having a table?
Which is faster join or subquery in oracle?
What is an oracle database?
What are ddl statements in oracle?
How to count duplicated values in a column in oracle?
Explain oracle insert into command?
What is dual table oracle?
What language does oracle use?
What are the differences between primary key and unique key?
How to empty your oracle recycle bin?
Will you be able to store pictures in the database?explain.
What is the purpose of tables, private synonyms and public synonyms in Oracle?
How to define default values for formal parameters?