Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Mehr als eine Prozedur in einer SQL-Datei erstellen?

/

hinzufügen
create or replace procedure pro1 as 
begin
   null;
end pro1;
/

create or replace procedure pro2 as 
begin
   null;
end pro2;
/

create or replace procedure pro3 as 
begin
   null;
end pro3;
/