| Oracle8i SQL Reference Release 3 (8.1.7) Part Number A85397-01 |
|
SQL Statements:
DROP SEQUENCE to UPDATE, 6 of 27
Use the DROP TRIGGER statement to remove a database trigger from the database.
|
See Also:
|
The trigger must be in your own schema or you must have the DROP ANY TRIGGER system privilege.
In addition, to drop a trigger on DATABASE in another user's schema, you must have the ADMINISTER DATABASE TRIGGER system privilege.
schema
Specify the schema containing the trigger. If you omit schema, Oracle assumes the trigger is in your own schema.
trigger
Specify the name of the trigger to be dropped. Oracle removes it from the database and does not fire it again.
DROP TRIGGER Example
The following statement drops the reorder trigger in the schema ruth:
DROP TRIGGER ruth.reorder;
|
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|