新库,不知道谁装的
拿过来要我导数据并且割接
为了方便建了个权限很高的用户
create user an identified by an;
grant dba to an;
建完后试下看能不能删掉
SQL> drop user an;
ORA-01001: 无效的游标
ORA-00600: 内部错误代码,参数: [qmxiUnpPacked2], [121], [], [], [], [], [], []
--------------------------------------
查找网上资料
Note:235423.1:
If your shared_pool_size and java_pool_size are less than 150Mb the do the
following :
1/ Set your shared_pool_size and java_pool_size to 150Mb each. In some case
you may need to use larger pool sizes.
2/ Get the xdbpatch.sql script. from Note 237305.1
3/ Copy xdbpatch.sql to $ORACLE_HOME/rdbms/admin/xdbpatch.sql having taken a
backup of the original file first
4/ Restart the instance with:
startup migrate;
5/ spool catpatch
@?/rdbms/admin/catpatch.sql
--------------------------------------
于是照做
1、调整shared_pool_size到160000000
调整java_pool_size到160000000
重启实例,错误仍然存在
2、关闭实例
复制$ORACLE_HOME/rdbms/admin/xdbpatch.sql到其他路径做备份
关闭实例
startup migrate
@?/rdbms/admin/catpatch.sql
SQL> shutdown immediate
数据库已经关闭。
已经卸载数据库。
ORACLE 例程已经关闭。
SQL>
SQL> startup
ORACLE 例程已经启动。
Total System Global Area 387522412 bytes
Fixed Size 454508 bytes
Variable Size 369098752 bytes
Database Buffers 16777216 bytes
Redo Buffers 1191936 bytes
数据库装载完毕。
数据库已经打开。
SQL> drop user an;
用户已丢弃
成功解决
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/13177610/viewspace-673815/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/13177610/viewspace-673815/