ORA-25153: Temporary Tablespace is Empty 重建控制檔案導致丟失tempfile
expdp jzh/jzh dumpfile=emp1.dmp directory=test_dir tables=emp1 logfile=emp1.log
Export: Release 11.2.0.3.0 - Production on Sat Sep 27 14:40:07 2014
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
ORA-25153: Temporary Tablespace is Empty
ORA-06512: at "SYS.DBMS_LOB", line 724
ORA-06512: at "SYS.DBMS_DATAPUMP", line 3964
ORA-06512: at line 1
匯出資料時遇到以上報錯,於是先看看temp表空在不在。
SYS@test>select tablespace_name from dba_tablespaces;
TABLESPACE_NAME
------------------------------
SYSTEM
SYSAUX
UNDOTBS1
TEMP
USERS
EXAMPLE
SYS@test>select tablespace_name,file_name from dba_temp_files;---臨時檔案沒有了
no rows selected
[oracle@11g test]$ ll
total 1955416
-rw-r----- 1 oracle oinstall 10076160 Sep 27 14:44 control01.ctl
-rw-r----- 1 oracle oinstall 362422272 Sep 27 12:12 example01.dbf
-rw-r----- 1 oracle oinstall 52429312 Sep 27 14:42 redo01.log
-rw-r----- 1 oracle oinstall 52429312 Sep 27 12:12 redo02.log
-rw-r----- 1 oracle oinstall 52429312 Sep 27 12:12 redo03.log
-rw-r----- 1 oracle oinstall 597696512 Sep 27 14:40 sysaux01.dbf
-rw-r----- 1 oracle oinstall 754982912 Sep 27 14:41 system01.dbf
-rw-r----- 1 oracle oinstall 30416896 Sep 25 22:14 temp01.dbf
-rw-r----- 1 oracle oinstall 99622912 Sep 27 14:40 undotbs01.dbf
-rw-r----- 1 oracle oinstall 15736832 Sep 27 14:40 users01.dbf
臨時檔案在,很奇怪,查查alert.log。
WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
Default Temporary Tablespace will be necessary for a locally managed database in future rele
ase
Successful mount of redo thread 1, with mount id 2157453076
Completed: CREATE CONTROLFILE REUSE DATABASE "TEST" NORESETLOGS ARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 292
WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
Default Temporary Tablespace will be necessary for a locally managed database in future rele
ase
Successful mount of redo thread 1, with mount id 2157453076
Completed: CREATE CONTROLFILE REUSE DATABASE "TEST" NORESETLOGS ARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 292
這時想起來前幾天重建了控制檔案,add回來。
SYS@test>alter tablespace temp add tempfile
2 '/u01/app/oracle/oradata/test/temp01.dbf';
Tablespace altered.
TABLESPACE_NAME FILE_NAME
------------------------------ ----------------------------------------
TEMP /u01/app/oracle/oradata/test/temp01.dbf
ok了,回來了。
Export: Release 11.2.0.3.0 - Production on Sat Sep 27 14:40:07 2014
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
ORA-25153: Temporary Tablespace is Empty
ORA-06512: at "SYS.DBMS_LOB", line 724
ORA-06512: at "SYS.DBMS_DATAPUMP", line 3964
ORA-06512: at line 1
匯出資料時遇到以上報錯,於是先看看temp表空在不在。
SYS@test>select tablespace_name from dba_tablespaces;
TABLESPACE_NAME
------------------------------
SYSTEM
SYSAUX
UNDOTBS1
TEMP
USERS
EXAMPLE
SYS@test>select tablespace_name,file_name from dba_temp_files;---臨時檔案沒有了
no rows selected
[oracle@11g test]$ ll
total 1955416
-rw-r----- 1 oracle oinstall 10076160 Sep 27 14:44 control01.ctl
-rw-r----- 1 oracle oinstall 362422272 Sep 27 12:12 example01.dbf
-rw-r----- 1 oracle oinstall 52429312 Sep 27 14:42 redo01.log
-rw-r----- 1 oracle oinstall 52429312 Sep 27 12:12 redo02.log
-rw-r----- 1 oracle oinstall 52429312 Sep 27 12:12 redo03.log
-rw-r----- 1 oracle oinstall 597696512 Sep 27 14:40 sysaux01.dbf
-rw-r----- 1 oracle oinstall 754982912 Sep 27 14:41 system01.dbf
-rw-r----- 1 oracle oinstall 30416896 Sep 25 22:14 temp01.dbf
-rw-r----- 1 oracle oinstall 99622912 Sep 27 14:40 undotbs01.dbf
-rw-r----- 1 oracle oinstall 15736832 Sep 27 14:40 users01.dbf
臨時檔案在,很奇怪,查查alert.log。
WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
Default Temporary Tablespace will be necessary for a locally managed database in future rele
ase
Successful mount of redo thread 1, with mount id 2157453076
Completed: CREATE CONTROLFILE REUSE DATABASE "TEST" NORESETLOGS ARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 292
WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
Default Temporary Tablespace will be necessary for a locally managed database in future rele
ase
Successful mount of redo thread 1, with mount id 2157453076
Completed: CREATE CONTROLFILE REUSE DATABASE "TEST" NORESETLOGS ARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 292
這時想起來前幾天重建了控制檔案,add回來。
SYS@test>alter tablespace temp add tempfile
2 '/u01/app/oracle/oradata/test/temp01.dbf';
Tablespace altered.
TABLESPACE_NAME FILE_NAME
------------------------------ ----------------------------------------
TEMP /u01/app/oracle/oradata/test/temp01.dbf
ok了,回來了。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10271187/viewspace-1283074/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle歸檔檔案丟失導致OGG不用啟動Oracle
- 新建的表空間(或資料檔案)丟失以及控制檔案丟失,有新建表空間(或資料檔案)前的控制文
- Nginx轉發導致請求頭丟失Nginx
- Controlfile 重建控制檔案 noresetlogs, resetlogs..
- sock鎖檔案導致的MySQL啟動失敗MySql
- Win10系統KB4549951導致個人檔案丟失BUG的解決辦法Win10
- 儲存崩潰導致資料丟失如何處理
- oracle控制檔案的損壞或完全丟失的恢復辦法Oracle
- 關於 iconv 轉碼導致資料丟失的問題
- 伺服器當機會導致Kafka訊息丟失嗎伺服器Kafka
- u盤啟動修復Win10引導檔案丟失的方法Win10
- 儲存互斥失敗導致資料丟失的資料恢復成功案例資料恢復
- 電腦檔案丟失資料恢復資料恢復
- win10桌面檔案丟失怎麼辦_win10開機桌面檔案丟失如何找回Win10
- 重灌系統導致分割槽丟失的資料恢復案例資料恢復
- oracle快速拿到重建控制檔案語句的方法二Oracle
- 伺服器資料恢復—重灌系統導致XFS檔案系統分割槽丟失的資料恢復案例伺服器資料恢復
- 【Vsan資料恢復】斷電導致Vsan分散式儲存虛擬磁碟檔案丟失的資料恢復案例資料恢復分散式
- 【伺服器資料恢復】虛擬機器檔案丟失導致Hyper-V癱瘓的資料恢復伺服器資料恢復虛擬機
- 丟失的隨身碟檔案如何恢復?
- EVA4400儲存斷電導致資料丟失如何恢復
- 伺服器重灌系統導致分割槽丟失的恢復方法伺服器
- Verdaccio publish 時包含 deprecated 導致歷史版本丟失問題原因分析
- 虛擬化還原快照導致資料丟失恢復過程
- 【伺服器資料恢復】MDisk重建導致vdisk丟失,上層Oracle資料庫不可用的資料恢復案例伺服器資料恢復Oracle資料庫
- 【伺服器資料恢復】SAN LUN對映出錯導致檔案系統資料丟失的資料恢復案例伺服器資料恢復
- Containerd 的 Bug 導致容器被重建!如何避免?AI
- win10 ppt檔案丟失怎麼恢復_win10 ppt文件丟失如何找回Win10
- 救援丟失的Docx和Xlsx檔案的最佳方法
- 伺服器癱瘓導致虛擬機器丟失恢復過程伺服器虛擬機
- Google Drive存在未知故障,導致部分使用者丟失雲盤資料Go
- SAN LUN Mapping出錯導致的資料丟失恢復全過程APP
- 儲存意外斷電導致raid資訊丟失的解決過程AI
- 【伺服器資料恢復】RAID5崩潰後強制上線導致檔案丟失的資料恢復案例伺服器資料恢復AI
- 剪下的檔案還能恢復嗎,恢復剪貼丟失的檔案
- 【伺服器資料恢復】Hyper-V虛擬機器檔案丟失導致服務癱瘓的資料恢復案例伺服器資料恢復虛擬機
- 【伺服器資料恢復】異常斷電導致虛擬機器檔案丟失不能啟動的資料恢復案例伺服器資料恢復虛擬機
- Sql Server資料庫檔案丟失的恢復方法SQLServer資料庫
- 檔案傳輸軟體如何有效防止資料丟失?