1. oracle存储过程调用其他过程
直接在 程序中,返回 r_xml 语句之前 直接加一条赋值语句就OK了,
r_xml := r_xml1 || r_xml2;
2. ORACLE存储过程中如何调用自己写的存储过程
方法一:
exec procere_name;
execute procere_name;
方法二:
call procere_name;
方法三:
begin
execute procere_name;end;
end;
3. 请问oracle怎么执行存储过程
我试验过了,就是exec 存储过程名或者execute 存储过程名(参数),请你在仔细确认一下,你的存储过程名写没写对呀,或者你没有进入sqlplus中?
----
以上,希望对你能有帮助。
4. oracle存储过程里调用存储过程
存储过程里直接新起一行写b(c,d);就可以,不在存储过程中单独执行时要call b(c,d);
5. oracle的存储过程的调用和写法
存储过程的执行方法如下
/*****************************************************************
oracle pl/sql中新建一个"测试"窗口,键入以下值测试oracle存储过程。
dbms.output.put_line(param)为打印消息,类似jsp的out.println(),
用于在过程中查看错误地方,可以在过称中添加。
*****************************************************************/
declare
param varchar2(10);
begin
param :='week';--这是你的输入参数
proc_rpt_result(param);
dbms_output.put_line(param);--这是过程处理打印结果
end;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
这是我前段时间自己查资料总结的,都是初学者 希望对你有用
cursor是游标类型,前面某个查询的值有多个返回 如
select xx from xxx 有多个返回值xx存入游标cursor,下面的open打开游标,对每一个游标的值按顺序进行操作,你可以把游标看成是一个数组,select存入,open取出,你这个包我看不懂。
6. oracle如何在函数中调用存储过程
函数中调用存储过程报错,多半是由于函数的执行用户,没有授权insert 权限。
7. ORACLE存储过程怎么调用
在sqlplus中:
SQL>execute [包名.]过程名(参数列表); --然后回车即可
在其他过程或函数中,直接调用就行了。
8. oracle 怎么调用存储过程
ORACLE存储过程 以oracle自带例子数据库的表举例
1、
create or replace procere p
is
cursor c is
select * from emp2 for update;
begin
for v_emp in c loop
if(v_emp.sal <2000) then
update emp2 set sal =sal+1 where current of c ;
elsif(v_emp.sal>=2000) then
delete from emp2 where current of c;
end if;
end loop;
commit;
end;
创建了存储过程不代表运行了存储过程;
运行此存储过程 :
方式一 exec p;
方式二
begin
p;
end;
2、带参数的存储过程
in 相当于程序里的参数,供传入用,在存储过程不能改变其值;
out 相当于程序里的返回值,在存储过程中可以为其赋值传出;
in out 既可以当参数又可以当返回值用;
不带上述说明符默认为in类型;
下例中v_a v_b 为in类型
v_c 为out类型
v_d 为in out 类型
create or replace procere p(v_a in number,v_b number,v_c out number,v_d in out number)
is
begin
if(v_a > v_b) then
v_c := v_a;
else
v_c := v_b;
end if;
v_d := v_d+1;
end;
---> 调试时:
可以在命令窗口调试,出错时 用show errors 显示出错信息;
可以在plDv中调试;
---> 运行时:
可以在命令窗口运行:
declare
v_a number:=3;
v_b number:=4;
v_c number;
v_d number:=5;
begin
p(v_a,v_b,v_c,v_d);
dbms_output.put_line(v_c);
dbms_output.put_line(v_d);
end;
可以在plDv中调试;