Oracle 10g中獲取DBID |
發(fā)布時間: 2012/8/29 17:53:03 |
一般數(shù)據(jù)庫能mount獲取dbid比較容易 C:\Users\Liangwei>rman target / 恢復管理器: Release 10.2.0.3.0 - Production on 星期五 10月 7 21:29:05 2011 Copyright (c) 1982, 2005, Oracle. All rights reserved. 已連接到目標數(shù)據(jù)庫: TEST (DBID=2061567322, 未打開) SQL> select dbid from v$database; DBID
數(shù)據(jù)庫不能mount的情況下獲取dbid的方法 1.如果有AWR報告,從AWR報告中也可以獲取DBID WORKLOAD REPOSITORY report for DB Name DB Id Instance Inst Num Release RAC Host 二、從備份文件中恢復控制文件后mount數(shù)據(jù)庫 RMAN> restore controlfile from 'E:\Oracle\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TEST\BACKUPSET\2011_10_ 啟動 restore 于 07-10月-11 通道 ORA_DISK_1: 正在復原控制文件 SQL> alter database mount; 數(shù)據(jù)庫已更改。 C:\Users\Liangwei>rman target / 恢復管理器: Release 10.2.0.3.0 - Production on 星期五 10月 7 21:48:52 2011 Copyright (c) 1982, 2005, Oracle. All rights reserved. 已連接到目標數(shù)據(jù)庫: TEST (DBID=2061567322, 未打開)
C:\Users\Liangwei>rman target / 恢復管理器: Release 10.2.0.3.0 - Production on 星期五 10月 7 21:40:51 2011 Copyright (c) 1982, 2005, Oracle. All rights reserved. 連接到目標數(shù)據(jù)庫: test (未裝載) RMAN> set dbid=1234567890 正在執(zhí)行命令: SET DBID RMAN> restore database; 本文出自:億恩科技【1tcdy.com】 |