|
|
bug4458790好像没有for windows的啊
SQL> select *from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
SQL> declare
2 strPPState varchar2(10);
3 begin
4 select max(('')) into strPPState from dual;
5 dbms_output.put_line(strPPState);
6 end;
7 /
PL/SQL 过程已成功完成。
SQL> declare
2 strPPState varchar2(10);
3 begin
4 select max(('1')) into strPPState from dual;
5 dbms_output.put_line(strPPState);
6 end;
7 /
declare
*
第 1 行出现错误:
ORA-06502: PL/SQL: 数字或值错误 : 字符串缓冲区太小
ORA-06512: 在 line 4 |
|