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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【案例分析】ORA-25153: Temporary Tablespace is Empty
- ORA-25153: Temporary Tablespace is Empty 解決方法
- 重建控制檔案後,對臨時表空間(temporary tablespace)進行重建
- Oracle 11g重建控制檔案——控制檔案全部丟失,從零開始Oracle
- 控制檔案丟失恢復例項(3) - 使用重建控制檔案方式(noresetlogs)
- Oracle歸檔檔案丟失導致OGG不用啟動Oracle
- 控制檔案丟失恢復
- 【控制檔案丟失恢復】
- 電腦突然斷電導致檔案丟失怎麼辦?
- 磁碟損壞導致資料檔案丟失的恢復
- 控制檔案丟失恢復(二)
- 恢復丟失的控制檔案
- 控制檔案丟失處理方法
- 控制檔案全部丟失恢復
- 重建控制檔案與 datafile offline,tablespace read only
- 控制檔案全部丟失的恢復
- 控制檔案部分丟失的恢復
- 控制檔案丟失的RMAN恢復
- 重建控制檔案
- 重建控制檔案--
- rman恢復:資料檔案丟失,控制檔案丟失,聯機日誌檔案丟失(非當前使用與當前使用)
- 當前控制檔案全部丟失恢復
- 一次密碼檔案丟失導致的dataguard複製中斷密碼
- Oracle重建控制檔案Oracle
- DataGuard重建控制檔案
- oracle 重建控制檔案Oracle
- 恢復之丟失全部控制檔案以及備份中的控制檔案
- 模擬控制檔案丟失進行恢復。
- 控制檔案損壞,丟失其中一個
- 【TABLESPACE】通過重建控制檔案調整表空間資料檔案位置及名稱
- 引數檔案控制檔案和資料檔案丟失的恢復
- Oracle 控制檔案的重建Oracle
- 利用trace重建控制檔案
- 新建的表空間(或資料檔案)丟失以及控制檔案丟失,有新建表空間(或資料檔案)前的控制文
- windows 下 Oracle 10.2重啟後控制檔案丟失,重建控制問題ORA-600、ORA-01503WindowsOracle
- Nginx轉發導致請求頭丟失Nginx
- TSM備份時因歸檔日誌丟失而導致備份失敗
- IZ0-053 Q575(控制檔案丟失)