This rule checks that all variable names match a provided regular expression.

Example

Considering the default expression:

DECLARE
  dept_name dept.name%type; -- Compliant
  dept_name_ dept.name%type; -- Noncompliant
BEGIN
  ...
END;