Answer Posted / nishi
Database trigger is a stored procedure that invokes automatically when a predefined event occurs.The usage of database trigger is to audit the data modification.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how to convert .db (extention) database file into .dmp (extention ) for oracle database ?
State any two functions of oracle?
Explain the use of grant option in imp command.
How would you configure your networking files to connect to a database by the name of DSS which resides in domain icallinc.com?
What happens to the data files if a tablespace is dropped?
please explain.. DB architecture ...
Why does Oracle not permit the use of PCTUSED with indexes?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
What is a trigger and what are its types in oracle?
What is oracle database 10g express edition?
What is bulk collect in oracle?
What are the types of trigger in oracle?
What is a read write transaction in oracle?
Please explain compound trigger in oracle?
How to connect the oracle server as sysdba?