oracle数据库存储过程在哪里,Oracle数据库创建存储过程

1.最简单的存储过程

SQL> create procedure sample_proc is

2 begin

3 null;

4 end sample_proc;

5 /

2.如果我们重复建立存储过程

SQL> create procedure sample_proc is

2 begin

3 dbms_output.put_line('Hello World');

4 end sample_proc;

5 /

会出现以下状况

create procedure sample_proc is

*

第 1 行出现错误:

ORA-00955: 名称已由现有对象使用

3.避免存储过程,使用OF REPLACE

SQL> create or replace procedure sample_proc is

2 begin

3 dbms_output.put_line('Hello World');

4 end sample_proc;

5 /

4.在PL/SQL程序块中调用该存储过程

SQL> set serveroutput on

SQL> begin

2 sample_proc;

3 end;

4 /

结果:

Hello World

PL/SQL 过程已成功完成。

5.使用EXECUTE在PL/SQL程序块中调用该存储过程

SQL> execute sample_proc

结果:

Hello World

PL/SQL 过程已成功完成。

6.使用EXECUTE简写exec在PL/SQL程序块中调用该存储过程

exec sample_proc;

7.使用Show Error显示创建过程中出现的错误

SQL> create or replace procedure sample_proc is

2 begin

3 dbms_output.put_line(Hello World);

4 end sample_proc;

5 /

结果:

警告: 创建的过程带有编译错误。

SQL> show error

PROCEDURE SAMPLE_PROC 出现错误: LINE/COL ERROR -------- ----------------------------------------------------------------- 3/30     PLS-00103: 出现符号 "WORLD"在需要下列之一时:          . ( ) , * @ % & = - + < /          > at in is mod remainder not rem =>          <> or != or ~= >= <= <> and or like like2 like4 likec as          between from using || multiset member submultiset          符号 "." 被替换为 "WORLD" 后继续。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值