当前位置: 代码迷 >> Oracle管理 >> pL/sql存储过程简单编写有关问题
  详细解决方案

pL/sql存储过程简单编写有关问题

热度:69   发布时间:2016-04-24 04:32:01.0
pL/sql存储过程简单编写问题
--创建
create or replace procedure p1 as
begin
dbms_output.put_line('hello?world!?this?is?the?first?procedure');??
end p1;

--执行
begin
p1;
end;
或者
exec p1

创建是可以的,为什么不能在pl/sql里执行
pL/sql 存储过程

------解决方案--------------------
应该可以的啊,你怎么判断不能执行的?
  相关解决方案