Oracle PL/SQL – Delete Trigger example
This article shows you how to use DROP TRIGGER to delete a trigger. — delete a trigger DROP TRIGGER trigger_name; Note In DROP TRIGGER statement, recommend to specify a schema name before trigger name. If you don’t specify a schema name, then database will assume that the trigger is in your own schema. 1. Table …