rules repository

G-9212

🆓
Warning

Always follow naming conventions for synonyms.

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

Synonyms should be used to address an object in a foreign schema rather than to rename an object. Therefore, synonyms should share the name with the referenced object.

Example

Non-Compliant Example

create or replace synonym départements for hr.departments;
Issues
LineColumnMessage
127synonym départements does not match '^[a-z][a-z0-9$#_]*$'.

Explanation

We do not want accented letters in synonym names.

Compliant Solution - ★★★★★

create or replace synonym departements for hr.departments;

Explanation

All accented letters are replaced with plain Latin letters.

Parameters

Use parameters to customize the rule to your needs.

ParameterDescriptionDefault Value
SynonymPatternCase-insensitive regular expression pattern for SQL synonyms.^[a-z][a-z0-9$#_]*$

References