Thread 1 cannot allocate new log, sequence NNN 錯誤
-- 錯誤程式碼舉例:(from alert_DBSID.log)
Tue Mar 15 18:35:21 2011
+188791 Thread 1 advanced to log sequence 783 (LGWR switch)
+188792 Current log# 3 seq# 783 mem# 0: /opt/app/oracle/oradata/Homelink/redo03.log
+188793 Thread 1 cannot allocate new log, sequence 784
+188794 Checkpoint not complete
+188795 Current log# 3 seq# 783 mem# 0: /opt/app/oracle/oradata/Homelink/redo03.log
+188796 Thread 1 advanced to log sequence 784 (LGWR switch)
+188797 Current log# 1 seq# 784 mem# 0: /opt/app/oracle/oradata/Homelink/redo01.log
+188798 Thread 1 cannot allocate new log, sequence 785
--原因, REDOLOG 太小.
--解決,新建較大的REDOLOG,刪除舊的REDOLOG.
--REFERENCE LINK:
http://hi.baidu.com/itoracle/blog/item/0e15068a8861c7739e2fb4be.html
SQL>alter system switch logfile;
SQL>alter database drop logfile group 1;
SQL>alter database drop logfile group 2;
SQL>alter database drop logfile group 3;
SQL>alter database drop logfile group 4;
3.重建重做日誌組1,2,3,4,大小設定為200M
SQL>alter database add logfile thread 1 group 1 size 200m;
SQL>alter database add logfile thread 2 group 2 size 200m;
SQL>alter database add logfile thread 1 group 3 size 200m;
SQL>alter database add logfile thread 2 group 4 size 200m;
[@more@]來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/350519/viewspace-1047597/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Thread 1 cannot allocate new logthread
- Thread 1 cannot allocate new log,Checkpoint not completethread
- Thread 1 cannot allocate new log 的處理辦法thread
- Thread 1 cannot allocate new log Private strand flush not complete 警告thread
- 【轉】cannot allocate new log
- 【ASK_ORACLE】檢查點錯誤“Cannot allocate new log”和“Checkpoint not complete”Oracle
- cannot allocate new log 的解決方法
- Manual Log Switching Causing Cannot Allocate New Log in Alert Log_435887.1
- Ubuntu Cannot allocate memory 錯誤解決方案Ubuntu
- Redis 寫磁碟出錯 Cannot allocate memoryRedis
- redis 寫磁碟出錯Cannot allocate memoryRedis
- ora-01034 ora-27121 Cannot allocate memory錯誤解決
- fork failed - Cannot allocate memoryAI
- ORA-01623: log is current log for thread - cannot dropthread
- 【oracle】ORA-16038: log 2 sequence# 98 cannot be archivedOracleHive
- redis : Can't save in background: fork: Cannot allocate memoryRedis
- async 與 Thread 的錯誤結合thread
- ORA-00312: online log 5 thread 1:誤刪standby log 日誌組thread
- cenots7.6系統報“fork:Cannot allocate memory” 報錯的解決方法(實操)
- windows(10)執行laravel new blog出錯WindowsLaravel
- AIX5.3安裝 ORACLE 10.2 RAC 執行root.sh出現lsdb: Cannot allocate memory of size 0 錯誤的解決方法AIOracle
- eclipse中:The type java.lang.object cannot be resolved錯誤(jdk配置錯誤)EclipseJavaObjectJDK
- VM warning: INFO: OS::commit_memory Cannot allocate memoryMIT
- 錯誤收集:thread 1:exc_bad_access(code=1,address=0x70000008)thread
- redolog threadthread
- new Thread與執行緒建立thread執行緒
- 解決Can not allocate log問題的方法
- 關於weblogic pool 一錯誤除錯Web除錯
- new Child();new Child(1);
- Exception in thread "main" java.lang.NoClassDefFoundError錯誤資訊(轉帖)ExceptionthreadAIJavaError
- ORA-00322: log 3 of thread 1 is not current copythread
- PbootCMS錯誤提示:執行SQL發生錯誤!錯誤:no such column: def1bootSQL
- SQL Server ErrorLog 錯誤日誌SQLServerError
- 記錄一次錯誤的使用當前時間new Date()引發的錯誤
- ORA-16019: cannot use LOG_ARCHIVE_DEST_1 with LOG_ARCHIVE_DESTHive
- [譯] 避免那些可惡的 "cannot read property of undefined" 錯誤Undefined
- virtualbox中Cannot register the hard disk錯誤解決辦法
- ORA-01407: cannot update to null 錯誤解決Null