connect as sysdba;
grant debug any procedure to test; -- 此权限也适用function
grant debug connect session to test;
二、建立断点
在pl/sql developer中选择procedure/function,右键|Edit,在代码页中添加断点。
三、启用debug
在pl/sql developer中选择procedure/function,右键|Add debug information。
四、debug
在pl/sql developer中选择procedure/function,右键|Test, 办入参数后按F9,即进入debug界面。
绿色三角形图标表示运行到断点,也可以选择Step Info即逐行调试,调式中鼠标落到变量处即显示变量值。