Can we call a trigger inside a function and function inside a
trigger? Give example.
Answer Posted / manikandan. s
triggers can't be called. They will be fired automatically
during certain operations like insert, delete, etc..
Inside a trigger we can call function
Ex
CREATE OR REPLACE FUNCTION f_t RETURN NUMBER IS
tmpVar NUMBER;
BEGIN
select sum(col2) into tmpVar from t;
RETURN tmpVar;
EXCEPTION
WHEN NO_DATA_FOUND THEN
NULL;
WHEN OTHERS THEN
RAISE;
END f_t;
/
CREATE OR REPLACE TRIGGER L4OC.T_T
AFTER INSERT
ON L4OC.T
REFERENCING NEW AS NEW OLD AS OLD
FOR EACH ROW
declare
tmpvar number;
begin
select f_t into tmpvar from dual;
insert into t_t values(:old.col1, tmpvar);
end;
/
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
Where is the export dump file located?
21. Using a set operator, display the client number of all clients who have ever placed an order and whose whose name does not contain the string Sm.
Explain the characteristics of oracle dba?
How to use attributes of the implicit cursor in oracle?
What do you mean by a database transaction & what all tcl statements are available in oracle?
What is materialized view in Oracle?
In which language oracle has been developed?
How to retrieve values from data fields in record variables?
Write a trigger example in oracle?
How to use group functions in the select clause using oracle?
Oracle
How to select an oracle system id (sid)?
How to get a create statement for an existing table?
How do I use os authentication with weblogic jdriver for oracle and connection pools?
What is an oracle transaction?