您好,登錄后才能下訂單哦!
在從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$;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。