You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
Language Usage / Stored Objects / Triggers
Never use multiple UPDATE OF statements in the event clause of a trigger
bad:
CREATE OR REPLACE TRIGGER xyz BEFORE UPDATE OF column1 OR UPDATE OF column2 ...good:
CREATE OR REPLACE TRIGGER xyz BEFORE UPDATE OF column1, column2 ...