本文共 1922 字,大约阅读时间需要 6 分钟。
在从oracle10g升级到oracle11g后,就需要对oracle11g的新特性进行了解,这些特性可能会对应用及性能产生影响,需要调整。
oracle11g中默认在default概要文件中设置了PASSWORD_LIFE_TIME=180天后过期,到期后会自动改密码, 会影响应用的应用。
SQL> alter profile default limit password_life_time unlimited;
Oracle11g中默认用户名和密码大小写敏感,oracle10g就是没有这个问题。
SQL> alter system set sec_case_sensitive_logon=false scope=spfile;
SQL> alter system set deferred_segment_creation = false scope=spfile;
经测试采用11.2.0.4的exp导出空表,现导入是可以导入的。如果采用expdp、impdp导入导出是没有问题的。
对于已经是空表问题的解决方式如下,找到表空,并立即分配空间:
SQL> select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 ;
'ALTERTABLE'||TABLE_NAME||'ALLOCATEEXTENT;'
----------------------------------------------------------- alter table C allocate extent; alter table B allocate extent; alter table A allocate extent; alter table ABC allocate extent; alter table TEST_LOCK allocate extent;
SQL> alter system set audit_trail=none scope=spfile;
该参数默认为DB,即审计数据存在system表空间的AUD$表中。新接手生产库中造成一例SYSTEM表空间满的故障。警告日志记录如下。
ORA-1653: unable to extend table SYS.AUD$ by 128 in tablespace SYSTEM
ORA-1653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM Thu Dec 10 08:47:13 2015 ORA-1653: unable to extend table SYS.AUD$ by 128 in tablespace SYSTEM ORA-1653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM Thu Dec 10 08:47:13 2015 ORA-1653: unable to extend table SYS.AUD$ by 128 in tablespace SYSTEM ORA-1653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM ORA-1653: unable to extend table SYS.AUD$ by 128 in tablespace SYSTEM ORA-1653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM最后直接清除掉:
truncate table sys.aud$;
本文转自 koumm 51CTO博客,原文链接:http://blog.51cto.com/koumm/1583543,如需转载请自行联系原作者