程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> RMAN-06496: must use the TO clause when the database is mounted or open,rman-06496mounted

RMAN-06496: must use the TO clause when the database is mounted or open,rman-06496mounted

編輯:Oracle教程

RMAN-06496: must use the TO clause when the database is mounted or open,rman-06496mounted


一:問題描述

備份控制文件時報錯:

RMAN> restore controlfile from '/home/oracle/backup/PROD_32_20140829.bak';

 

Starting restore at 29-AUG-14

using channel ORA_DISK_1

 

RMAN-00571: ===========================================================

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

RMAN-00571: ===========================================================

RMAN-03002: failure of restore command at 08/29/2014 02:41:21

RMAN-06496: must use the TO clause when the database is mounted or open

 

二:出錯原因

在數據庫mount狀態下恢復了控制文件。

三:解決辦法

在nomount狀態下恢復控制文件。

四:示例

 

SQL> shutdown immediate;
ORA-01109: database not open

 


Database dismounted.
ORACLE instance shut down.
SQL> startup nomount;
ORACLE instance started.

 

Total System Global Area  285212672 bytes
Fixed Size      1218992 bytes
Variable Size    113247824 bytes
Database Buffers   167772160 bytes
Redo Buffers      2973696 bytes

沒有再報錯了。

 




  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved