rules repository

G-1010

🆓
Warning

Try to label your sub blocks.

Reason

It's a good alternative for comments to indicate the start and end of a named processing.

Example

Non-Compliant Example

begin
   begin
      null;
   end;

   begin
      null;
   end;
end;
/
Issues
LineColumnMessage
24Missing start label in sub block.
44Missing end label in sub block.
64Missing start label in sub block.
84Missing end label in sub block.

Compliant Solution - ★★★★★

begin
   <<prepare_data>>
   begin
      null;
   end prepare_data;

   <<process_data>>
   begin
      null;
   end process_data;
end good;
/

References