ORA-20000:

来源:互联网 发布:java小游戏卡丁车源码 编辑:程序博客网 时间:2024/06/07 01:11

SQL>set   serveroutput   on   size   1000000  
  设置成更大就OK了。

 

exec   dbms_output.enable(999999999999999999999);

 

spool   c:/test.sql;  
  select   *   from   tarticle;  
  spool   off;