------解决方案-------------------- first: set serveroutput on
second: in the procedure ,add the pl/sql statement:
dbms_output.put_line(variable name)
------解决方案-------------------- dbms_output.put_line('fdafdsafdsa');
------解决方案-------------------- 存储过程test的时候 set serveroutput on 是没用的吧? 在test的时候,有个dbms的tab页是用来接收dbms的输出的
------解决方案-------------------- 会直接在下面输出
------解决方案-------------------- before creating the procedure,execute: set serveroutput on in the sqlplus
------解决方案-------------------- 异常时还没有执行到输出语句,所以没有看到结果 这个是查询语句无返回结果的错
------解决方案-------------------- 单步调试呗
------解决方案-------------------- 原因很清楚了,无返回值啊,毛病肯定出在select .. into ..这了,把into去了,把select放到sqlplus里执行下就0了