Skip to main content
Version: 1.0.16

ALTER EVENT TRIGGER

ALTER EVENT TRIGGER — Change the Definition of an Event Trigger

Synopsis

ALTER EVENT TRIGGER name DISABLE

ALTER EVENT TRIGGER name ENABLE [ REPLICA | ALWAYS ]

ALTER EVENT TRIGGER name OWNER TO { new_owner | CURRENT_USER | SESSION_USER }

ALTER EVENT TRIGGER name RENAME TO new_name

Description

ALTER EVENT TRIGGER changes the properties of an existing event trigger.

You must be a superuser to alter an event trigger.

Parameters

name

The name of an existing trigger to alter.

new_owner

The user name of the new owner of the event trigger.

new_name

The new name of the event trigger.

DISABLE/ENABLE [ REPLICA | ALWAYS ] TRIGGER

These forms configure the firing of the event trigger. A disabled trigger is still known to the system, but it is not executed when its triggering event occurs. See also session_replication_role.

See Also

CREATE EVENT TRIGGER,DROP EVENT TRIGGER