偶尔有空上来看看
分类: Oracle
2010-05-18 17:28:02
Oracle 的一个bug 需要修改隐含参数
ALTER SYSTEM SET "_cursor_features_enabled"=10 scope=spfile;
在本机(版本是10.2.0.1的)测试一下时,提示 *
第 1 行出现错误:
ORA-02065: 非法的 ALTER SYSTEM 选项
在一个10.2.0.3上执行一下:
C:\Documents and Settings\Administrator>sqlplus /nolog
SQL*Plus: Release 10.2.0.4.0 - Production on 星期二 5月 18 17:23:33 2010
Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
SQL> conn /as sysdba
已连接。
SQL> select *from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
PL/SQL Release 10.2.0.4.0 - Production
CORE 10.2.0.4.0 Production
TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - Production
SQL> ALTER SYSTEM SET "_cursor_features_enabled"=10 scope=spfile;
系统已更改。
SQL>