Oracle11g新特性注意事项
在從oracle10g升級(jí)到oracle11g后,就需要對(duì)oracle11g的新特性進(jìn)行了解,這些特性可能會(huì)對(duì)應(yīng)用及性能產(chǎn)生影響,需要調(diào)整。
1. Oracle11g密碼過期策略
oracle11g中默認(rèn)在default概要文件中設(shè)置了PASSWORD_LIFE_TIME=180天后過期,到期后會(huì)自動(dòng)改密碼, 會(huì)影響應(yīng)用的應(yīng)用。
SQL> alter profile default limit password_life_time unlimited;
?
2. Oracle11g對(duì)用戶名密碼大小寫敏感
Oracle11g中默認(rèn)用戶名和密碼大小寫敏感,oracle10g就是沒有這個(gè)問題。
SQL> alter system set sec_case_sensitive_logon=false scope=spfile;
?
3. Oracle11g空表不會(huì)立即創(chuàng)建segment,默認(rèn)是true. 在oracle11.2.0.1這樣就會(huì)產(chǎn)生一些問題,最大的問題就是exp導(dǎo)出時(shí),空表不會(huì)導(dǎo)出數(shù)據(jù)。對(duì)于使用oracle11.2.0.1 exp客戶端導(dǎo)入11.2.0.2以上版本數(shù)據(jù)庫時(shí)會(huì)出現(xiàn)EXP-00001錯(cuò)誤。
SQL> alter system set deferred_segment_creation = false scope=spfile;
經(jīng)測試采用11.2.0.4的exp導(dǎo)出空表,現(xiàn)導(dǎo)入是可以導(dǎo)入的。如果采用expdp、impdp導(dǎo)入導(dǎo)出是沒有問題的。
對(duì)于已經(jīng)是空表問題的解決方式如下,找到表空,并立即分配空間:
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;
?
4. Oracle11g默認(rèn)是開啟審記功能的,開啟審記功能是會(huì)對(duì)性能產(chǎn)生影響的,可以考慮關(guān)閉。
SQL> alter system set audit_trail=none scope=spfile;
該參數(shù)默認(rèn)為DB,即審計(jì)數(shù)據(jù)存在system表空間的AUD$表中。新接手生產(chǎn)庫中造成一例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$;
轉(zhuǎn)載于:https://blog.51cto.com/koumm/1583543
總結(jié)
以上是生活随笔為你收集整理的Oracle11g新特性注意事项的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用go build 进行条件编译
- 下一篇: BZOJ3775 : 点和直线