Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

drop_trigger(7) [linux man page]

DROP 
TRIGGER(7) SQL Commands DROP TRIGGER(7) NAME
DROP TRIGGER - remove a trigger SYNOPSIS
DROP TRIGGER [ IF EXISTS ] name ON table [ CASCADE | RESTRICT ] DESCRIPTION
DROP TRIGGER removes an existing trigger definition. To execute this command, the current user must be the owner of the table for which the trigger is defined. PARAMETERS
IF EXISTS Do not throw an error if the trigger does not exist. A notice is issued in this case. name The name of the trigger to remove. table The name (optionally schema-qualified) of the table for which the trigger is defined. CASCADE Automatically drop objects that depend on the trigger. RESTRICT Refuse to drop the trigger if any objects depend on it. This is the default. EXAMPLES
Destroy the trigger if_dist_exists on the table films: DROP TRIGGER if_dist_exists ON films; COMPATIBILITY
The DROP TRIGGER statement in PostgreSQL is incompatible with the SQL standard. In the SQL standard, trigger names are not local to tables, so the command is simply DROP TRIGGER name. SEE ALSO
CREATE TRIGGER [create_trigger(7)] SQL - Language Statements 2010-05-14 DROP TRIGGER(7)

Check Out this Related Man Page

DROP 
TRIGGER(7) SQL Commands DROP TRIGGER(7) NAME
DROP TRIGGER - remove a trigger SYNOPSIS
DROP TRIGGER name ON table [ CASCADE | RESTRICT ] INPUTS name The name of an existing trigger. table The name (optionally schema-qualified) of a table. CASCADE Automatically drop objects that depend on the trigger. RESTRICT Refuse to drop the trigger if there are any dependent objects. This is the default. OUTPUTS DROP TRIGGER The message returned if the trigger is successfully dropped. ERROR: DropTrigger: there is no trigger name on relation "table" This message occurs if the trigger specified does not exist. DESCRIPTION
DROP TRIGGER will remove an existing trigger definition. To execute this command the current user must be the owner of the table for which the trigger is defined. EXAMPLES
Destroy the if_dist_exists trigger on table films: DROP TRIGGER if_dist_exists ON films; COMPATIBILITY
SQL92 There is no DROP TRIGGER statement in SQL92. SQL99 The DROP TRIGGER statement in PostgreSQL is incompatible with SQL99. In SQL99, trigger names are not local to tables, so the command is simply DROP TRIGGER name. SEE ALSO
CREATE TRIGGER [create_trigger(7)] SQL - Language Statements 2002-11-22 DROP TRIGGER(7)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

How to filter a whole line using a word?

Hello Team, I have a script in which more than 500 trigger statemetns are written. i need to filter all lines from that script file which containts "CREATE TRIGGER" word in each line is it possible using linux commands?? example: CREATE TRIGGER S1.T1 .................. (10 Replies)
Discussion started by: kanakaraju
10 Replies