rman恢復好數據庫 exp時 出錯 EXP-00056 ORA-01403

在前一章中 數據庫恢復好後 進行exp時 報錯如下
[oracle@testsmb admin]$ exp SJTICKET/fortest@SJTICKET rows=y indexes=y CONSTRAINTS=Y compress=n buffer=4096 feedback=100000 file=/opt/oracle/mxj_test.dmp log=/opt/oracle/mxj_test.log

Export: Release 9.2.0.4.0 - Production on Mon Dec 15 16:13:38 2008

Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.


Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
Export done in ZHS16GBK character set and AL16UTF16 NCHAR character set
. exporting pre-schema procedural objects and actions
. exporting foreign function library names for user SJTICKET
. exporting PUBLIC type synonyms
. exporting private type synonyms
. exporting object type definitions for user SJTICKET
About to export SJTICKET's objects ...
. exporting database links
. exporting sequence numbers
. exporting cluster definitions
EXP-00056: ORACLE error 1403 encountered
ORA-01403: no data found
EXP-00000: Export terminated unsuccessfully

經過查詢錯誤發現是由於 臨時表空間的問題
create temporary TABLESPACE TEMP1 TEMPFILE '/opt/oracle/oradata/SJTICKET/temp01.dbf' size 100m;

ALTER DATABASE DEFAULT TEMPORARY TABLESPACE TEMP1;

在 exp就成功了


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章