归档模式下online已被offline的表空间
时间:2011-06-09 来源:liglewang
在归档模式下,用IMMEDIATE选项OFFLINE表空间后,如果需要ONLINE该表空间,需要先执行介质恢复(media recovery),如:
SQL> alter tablespace OCPTBS offline immediate;
Tablespace altered.
SQL> alter tablespace OCPTBS online;
alter tablespace OCPTBS online
*
ERROR at line 1:
ORA-01113: file 5 needs media recovery
ORA-01110: data file 5:
+XINER_DATA/xiner/datafile/ocptbs.268.745970939'
如果直接online的话,会提示file 5需要介质恢复。
SQL> recover tablespace OCPTBS;
Media recovery complete.
SQL> ALTER TABLESPACE OCPTBS ONLINE;
Tablespace altered.
相关阅读 更多 +