Oracle® Database SQL Language Reference 11g Release 2 (11.2) Part Number E26088-03 |
|
|
PDF · Mobi · ePub |
Triggers are defined using PL/SQL. Please refer to Oracle Database PL/SQL Language Reference for complete information on creating, altering, and dropping triggers.
Use the DROP
TRIGGER
statement to remove a database trigger from the database.
The trigger must be in your own schema or you must have the DROP
ANY
TRIGGER
system privilege. To drop a trigger on DATABASE
in another user's schema, you must also have the ADMINISTER
DATABASE
TRIGGER
system privilege.
Specify the schema containing the trigger. If you omit schema
, then Oracle Database assumes the trigger is in your own schema.
Specify the name of the trigger to be dropped. Oracle Database removes it from the database and does not fire it again.
Dropping a Trigger: Example The following statement drops the salary_check
trigger in the schema hr
:
DROP TRIGGER hr.salary_check;