oracle 调试 

 test window中 新建 bookmark,F9 --start,ctrl+N -- run into

  

declare

Num_a number:=6;
Num_b number;
begin
Num_b :=0;
Num_b := Num_a/Num_b;
Num_b :=7;
dbms_output.put_line('value of Num_b'|| Num_b);
Exception
when Zero_Divide
then
dbms_output.put_line(' Try to divide by zero');
end;


右键 add variable to watches 添加监视

 

 存储过程:

 

 create or replace procedure insertRecord
is
begin

insert into plsql101_person values('ab','jiang',sysdate,'jinwu');

commit;

end;

 

command window才支持存储过程调用。comman window 就是 oracle 的 sqlplus。

 切换用户  conn jiang/jiang as nomal

 execute insertRecord ; 回车执行。

 

 在 plsql developer 中存储过程无效的话,在存储过程目录下的图标上有一个小叉。