rules repository

G-9213

🆓
Warning

Always follow naming conventions for triggers.

Reason

SQL identifiers share the same namespace as PL/SQL identifiers. Follow naming conventions to prevent naming conflicts, improve readability, and clearly indicate the scope without forcing the use of qualified names. A common practice is to use a prefix and/or suffix to distinguish the identifier types.

Recommendations for Triggers on Tables and Views

Choose a naming convention that includes:

either

  • the name of the object the trigger is added to,
  • any of the triggering events:
    • _br_iud for Before Row on Insert, Update and Delete
    • _io_id for Instead of Insert and Delete

or

  • the name of the object the trigger is added to,
  • the activity done by the trigger,
  • the suffix _trg

Recommendations for System Triggers

Name of the event the trigger is based on.

  • Activity done by the trigger
  • Suffix _trg

Examples

  • ddl_audit_trg
  • logon_trg

Example

Non-Compliant Example

create or replace trigger logon after logon on database
begin
   null; -- some monitoring activity
end;
/
Issues
LineColumnMessage
127trigger logon does not match '^[a-z][a-z0-9$#_]*_(trg|((b|a)r?|io)_i?u?d?)$'.

Compliant Solution - ★★★★★

create or replace trigger logon_monitor_trg after logon on database
begin
   null; -- some monitoring activity
end;
/

Parameters

Use parameters to customize the rule to your needs.

ParameterDescriptionDefault Value
TriggerPatternCase-insensitive regular expression pattern for SQL triggers.^[a-z][a-z0-9$#_]*_(trg|((b|a)r?|io)_i?u?d?)$

References