oracle 存储过程 执行、调用不成功 求高手指导?
存储过程定义如下:createorreplaceprocedureupdate_studentsasbeginupdatestudentssetSTUDENT_AGE=1...
存储过程定义如下:
create or replace procedure update_students
as
begin
update students set STUDENT_AGE = 10
commit;
end update_students;
/
执行: execute update_students;
报错提示: 展开
create or replace procedure update_students
as
begin
update students set STUDENT_AGE = 10
commit;
end update_students;
/
执行: execute update_students;
报错提示: 展开
3个回答
展开全部
1)存储过程创建有语法错误,编译应该不能通过。明显的
update students set STUDENT_AGE = 10
后面少了分号(;),因此调用不成功没有什么奇怪的。
2)没有出入参的存储过程执行通过exec update_students;来实现的,也可以
begin
update_students;
end;
/
来执行
update students set STUDENT_AGE = 10
后面少了分号(;),因此调用不成功没有什么奇怪的。
2)没有出入参的存储过程执行通过exec update_students;来实现的,也可以
begin
update_students;
end;
/
来执行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
当前用户是否具有执行过程的权限?
还有过程创建完是否commit;
你尝试下这样调用、
set serveroutput on;
begin
update_students;
end;
或者
exec update_students;
还有过程创建完是否commit;
你尝试下这样调用、
set serveroutput on;
begin
update_students;
end;
或者
exec update_students;
追问
关于权限我是在普通用户下,然后切换到sys用户下,也提示这个错误,所以权限问题我认为应该不是的。然后也提交了。
还是提示错误:0RA-00922:提示选项缺失或无效。
追答
你图上的报错明显是存储过程这个对象的问题,但是过程代码又没错。
conn / as sysdba;
grant create procedure to your_user;
grant execute procedure to your_user;
conn your_user/pwd;
create or replace procedure update_students as begin update students set STUDENT_AGE = 10 commit;
end update_students;
commit;
set serveroutput on;
exec update_students;
begin
update_students;
end;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
create语句执行了吗?数据库里有存储过程了吗?
追问
执行了,有了。
追答
commit那句删掉试试?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询