Oracle/PLSQL: Drop a Trigger
The syntax for a dropping a Trigger is:
DROP TRIGGER trigger_name;
For example:
If you had a trigger called orders_before_insert, you could drop it with the following command:
DROP TRIGGER orders_before_insert;
TECH on the Net |
| Home Privacy Policy Feedback Link to us Site Map Forums |
|
Microsoft Database UNIX Other Top 10 Pages ADVERTISEMENT |
Oracle/PLSQL: Drop a TriggerThe syntax for a dropping a Trigger is:
For example: If you had a trigger called orders_before_insert, you could drop it with the following command:
|