CREATE PROCEDURE creates a stored procedure.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | CREATE [ OR REPLACE ] PROCEDURE procedure_name [ ( {[ argmode ] [ argname ] argtype [ { DEFAULT | := | = } expression ]}[,...]) ] [ { IMMUTABLE | STABLE | VOLATILE } | { SHIPPABLE | NOT SHIPPABLE } | {PACKAGE} | [ NOT ] LEAKPROOF | { CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT } | {[ EXTERNAL ] SECURITY INVOKER | [ EXTERNAL ] SECURITY DEFINER | AUTHID DEFINER | AUTHID CURRENT_USER} | COST execution_cost | ROWS result_rows | SET configuration_parameter { [ TO | = ] value | FROM CURRENT } ][ ... ] { IS | AS } plsql_body / |
Replaces the original definition when two stored procedures are with the same name.
Specifies the name of the stored procedure that is created (optionally with schema names).
Value range: a string. It must comply with the naming convention.
Specifies the mode of an argument.
VARIADIC specifies arguments of array types.
Value range: IN, OUT, IN OUT, INOUT, and VARIADIC. The default value is IN. Only the argument of OUT mode can be followed by VARIADIC. The parameters of OUT and INOUT cannot be used in procedure definition of RETURNS TABLE.
Specifies the name of an argument.
Value range: a string. It must comply with the naming convention.
Specifies the type of a parameter.
Value range: A valid data type.
Specifies a constraint. Parameters here are similar to those of CREATE FUNCTION. For details, see 5.18.17.13-CREATE FUNCTION.
Indicates the PL/SQL stored procedure body.
When you create a user, or perform other operations requiring password input in a stored procedure, the system catalog and csv log records the unencrypted password. Therefore, you are advised not to perform such operations in the stored procedure.
No specific order is applied to argument_name and argmode. The following order is advised: argument_name, argmode, and argument_type.
Create a stored procedure.
1 2 3 4 5 6 7 8 9 10 11 | CREATE OR REPLACE PROCEDURE prc_add ( param1 IN INTEGER, param2 IN OUT INTEGER ) AS BEGIN param2:= param1 + param2; dbms_output.put_line('result is: '||to_char(param2)); END; / |
Call the stored procedure.
1 | SELECT prc_add(2,3); |
Create a stored procedure whose parameter type is VARIADIC.
1 2 3 4 5 6 | CREATE OR REPLACE PROCEDURE pro_variadic (var1 VARCHAR2(10) DEFAULT 'hello!',var4 VARIADIC int4[]) AS BEGIN dbms_output.put_line(var1); END; / |
Execute the stored procedure.
1 | SELECT pro_variadic(var1=>'hello', VARIADIC var4=> array[1,2,3,4]); |
Create a stored procedure with the PACKAGE attribute.
1 2 3 4 5 6 7 8 9 10 | create or replace procedure package_func_overload(col int, col2 out varchar) package as declare col_type text; begin col2 := '122'; dbms_output.put_line('two varchar parameters ' || col2); end; / |