ORA-30012 undo tablespace 'UNDOTBS3' does not exist or of wrong type
ORA-30012 undo tablespace 'UNDOTBS1' does not exist or of wrong type
問題分析:根據錯誤提示內容為開啟UNDO表空間是出錯(發現UNDO表空間不存在或者型別錯誤),所以此時資料應該是可以啟動到mount狀態
SQL> startup mount;
ORACLE instance started.
Total System Global Area 534462464 bytes
Fixed Size 2215064 bytes
Variable Size 415236968 bytes
Database Buffers 113246208 bytes
Redo Buffers 3764224 bytes
Database mounted.
SQL> show parameter undo
NAME TYPE VALUE
------------------------------------ --------------------------------- ------------------------------
undo_management string AUTO
undo_retention integer 1
undo_tablespace string UNDOTBS1
SQL> select name from v$tablespace where name like '%UNDO%';
NAME
------------------------------------------------------------------------------------------
UNDOTBS001
由上面的資訊可知,引數檔案中記錄的UNDO表空間和控制檔案中記錄的UNDO表空間不一致
問題處理:修改引數檔案中的*.undo_tablespace='UNDOTBS1'為*.undo_tablespace='UNDOTBS001',然後重新啟動資料庫,正常。
About Me
........................................................................................................................ ● 本文作者:小麥苗,部分內容整理自網路,若有侵權請聯絡小麥苗刪除 ● 本文在itpub、部落格園、CSDN和個人微 信公眾號( DB寶)上有同步更新 ● 本文itpub地址: http://blog.itpub.net/26736162 ● 本文部落格園地址: http://www.cnblogs.com/lhrbest ● 本文CSDN地址: https://blog.csdn.net/lihuarongaini ● 本文pdf版、個人簡介及小麥苗雲盤地址: http://blog.itpub.net/26736162/viewspace-1624453/ ● 資料庫筆試面試題庫及解答: http://blog.itpub.net/26736162/viewspace-2134706/ ● DBA寶典今日頭條號地址: ........................................................................................................................ ● QQ群號: 230161599 、618766405 ● 微 信群:可加我微 信(lhrbestxh),我拉大家進群,非誠勿擾 ● 聯絡我請加QQ好友 ( 646634621 ),註明新增緣由 ● 於 2020-06-01 06:00 ~ 2020-06-30 24:00 在西安完成 ● 最新修改時間:2020-06-01 06:00 ~ 2020-06-30 24:00 ● 文章內容來源於小麥苗的學習筆記,部分整理自網路,若有侵權或不當之處還請諒解 ● 版權所有,歡迎分享本文,轉載請保留出處 ........................................................................................................................ ● 小麥苗的微店: ● 小麥苗出版的資料庫類叢書: http://blog.itpub.net/26736162/viewspace-2142121/ ● 小麥苗OCP、OCM、高可用網路班: http://blog.itpub.net/26736162/viewspace-2148098/ ● 小麥苗騰訊課堂主頁: https://lhr.ke.qq.com/ ........................................................................................................................ 請掃描下面的二維碼來關注小麥苗的微 信公眾號( DB寶)及QQ群(230161599、618766405)、新增小麥苗微 信(lhrbestxh), 學習最實用的資料庫技術。
........................................................................................................................ |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26736162/viewspace-2698495/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- PSQLexception: ERROR : type "signed" does not existSQLExceptionError
- Property 'context' does not exist on type 'NodeRequire'.ts(2339)ContextUI
- dcat-admin 表單 Field type [autocomplete] does not exist.
- asmcmd does not exist in directoryASM
- javax.media does not existJava
- tablespace 大檔案,undo,temp tablespace
- ‘map’ does not name a type
- vector does not name a type
- error :does not name a typeError
- Oracle OCP(48):UNDO TABLESPACEOracle
- Property [title] does not exist on this collection instance
- Waring: /dev/centos/swap does not existdevCentOS
- PatchObject constructor:Input file does not existObjectStruct
- error: 'cout' does not name a type|Error
- Laravel Class env does not exist 問題排查Laravel
- SNMP TABLE ERROR : Requested table is empty or does not existError
- ORA-00942: table or view does not existView
- FAQ:Field DATABASE does not exist; see long textDatabase
- error: '[class name]' does not name a typeError
- Specifying the Default Tablespace Type (78)
- oracle 切換undo tablespace小結Oracle
- relation with OID 637165 does not exist
- error: ‘xxx’ does not name a typeError
- does not name a type 的可能性
- error: ‘變數名‘ does not name a type|Error變數
- 'int32_t' does not name a type
- Overriding the Default Tablespace Type (79)
- ORA-04043: object DBA_DATA_FILES does not existObject
- ORA-04042 procedure, function, package, or package body does not existFunctionPackage
- ORA-24756: transaction does not exist問題解決
- 【Oracle】-【許可權-ORA-04043】- object does not existOracleObject
- PL/SQL: ORA-00942: table or view does not existSQLView
- ORA-12545 TNS: Host or Object Does not ExistObject
- ORA-29857: domain indexes and/or secondary objects exist in the tablespaceAIIndexObject
- Qt 報錯 “類名”does not name a typeQT
- The user specified as a definer ('wx_root'@'%') does not exist 解決方案
- Run Out Of Space On UNDO Tablespace Using DataPump Import/ExportImportExport
- oracle10g undo tablespace相關知識Oracle