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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【ASK_ORACLE】檢查點錯誤“Cannot allocate new log”和“Checkpoint not complete”Oracle
- Ubuntu Cannot allocate memory 錯誤解決方案Ubuntu
- ORA-01623: log is current log for thread - cannot dropthread
- 關閉tomcat報錯Cannot allocate memoryTomcat
- Redis 寫磁碟出錯 Cannot allocate memoryRedis
- ORA-16038: log 3 sequence# 510 cannot be archivedHive
- fork failed - Cannot allocate memoryAI
- redis : Can't save in background: fork: Cannot allocate memoryRedis
- async 與 Thread 的錯誤結合thread
- VM warning: INFO: OS::commit_memory Cannot allocate memoryMIT
- cenots7.6系統報“fork:Cannot allocate memory” 報錯的解決方法(實操)
- eclipse中:The type java.lang.object cannot be resolved錯誤(jdk配置錯誤)EclipseJavaObjectJDK
- ORA-16024: parameter LOG_ARCHIVE_DEST_1 cannot be parsedHive
- ORA-01511 error in renaming log/data files ORA-00261 log 4 of thread 1 is beingErrorthread
- new Thread與執行緒建立thread執行緒
- 開啟PHP的錯誤log日誌PHP
- Checkpoint log:invalid bitmap page錯誤修復
- 2、MySQL錯誤日誌(Error Log)詳解MySqlError
- Exception in thread "main" java.lang.NullPointerException: Cannot invokeExceptionthreadAIJavaNull
- [譯] 避免那些可惡的 "cannot read property of undefined" 錯誤Undefined
- 記錄一次錯誤的使用當前時間new Date()引發的錯誤
- PbootCMS錯誤提示:執行SQL發生錯誤!錯誤:no such column: def1bootSQL
- 錯誤Error during artifact deployment. See server log for details.ErrorServerAI
- MogDB 安裝解壓錯誤:cannot run bzip2: No such file or directory
- SQL中欄位比較型別不匹配錯誤:‘cannot be cast to’SQL型別AST
- 為啥呼叫new Thread().start()方法會呼叫run()方法?thread
- PbootCMS執行SQL發生錯誤!錯誤:no such column: def1bootSQL
- SyntaxError: Non-ASCII character 與 Cannot decode using encoding "ascii" 錯誤解決ErrorASCIIEncoding
- Golang錯誤處理函式defer、panic、recover、errors.New介紹Golang函式Error
- java.lang.OutOfMemoryError- unable to create new native thread 問題排查JavaErrorthread
- mongodb錯誤解決辦法-bash: ./mongod: cannot execute binary file: Exec format errorMongoDBORMError
- Rust : RUST_BACKTRACE=1錯誤提示Rust
- allowedOrigins cannot contain the gateway 報錯AIGateway
- jmeter報錯“Uncaught exception in thread Thread[AWT-EventQueue-0,6,main]“JMeterExceptionthreadAI
- API的設計(1) - 錯誤處理API
- sequence to sequence模型模型
- 每過一天 laravel log 就會報沒許可權錯誤Laravel
- CentOS7中使用yum安裝時報cannot find a valid baseurl for repo錯誤CentOS
- SAP RETAIL 執行事務程式碼WRP1,報錯-Transaction WRP1 cannot be executed-AI