Trivadis / plsql-and-sql-coding-guidelines

Trivadis PL/SQL & SQL Coding Guidelines

Home Page:https://trivadis.github.io/plsql-and-sql-coding-guidelines/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use "create or replace" in G-9010/G-9020/G-9030 to avoid violation of G-7125

PhilippSalvisberg opened this issue · comments

Use

create or replace package body employee_api is

instead of

create package body employee_api is

in good and bad example of G-9010, G-9020, G-9030