扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
在进行数据库恢复的过程中,很多时候我们需要知道Oracle数据库的DBID,通常有以下几种方法可以获得数据库的DBID.
1.查询v$database获得
由于DBID在控制文件和数据文件中都存在记录,所以如果能够mount数据库就可以查询v$database视图获得.
SQL> alter database mount; Database altered. SQL> select dbid from v$database; DBID SQL> |
2.在nomount状态时
如果数据库配置了自动控制文件备份(Oracle9i),并且名称是缺省的,那么我们可以从自动备份文件获得DBID.
[oracle@jumper dbs]$ cd $ORACLE_HOME/dbs |
这里的3152029224就是DBID.
3.从自动备份中恢复
需要或缺DBID进行恢复通常是因为丢失了所有的控制文件.在恢复时会遇到错误.
[oracle@jumper dbs]$ rman target / Recovery Manager: Release 9.2.0.4.0 - Production Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved. connected to target database: conner (not mounted) RMAN> restore controlfile from autobackup; Starting restore at 05-FEB-06 using target database controlfile instead of recovery catalog |
如果存在自动备份,我们通常可以直接恢复控制文件,mount数据库之后就好办了:
RMAN> restore controlfile from '/opt/oracle/product/9.2.0/dbs/c-3152029224-20051221-00'; Starting restore at 05-FEB-06 using channel ORA_DISK_1 |
4.直接从幸存的文件中读取
由于DBID存在于数据文件及控制文件中,所以我们可以通过PL/SQL程序直接从文件中读取:
SQL> select eygle.get_dbid('/opt/oracle/oradata/conner','user02.dbf') from dual; EYGLE.GET_DBID('/OPT/ORACLE/OR SQL> select dbid from v$database; DBID |
这种方法仅为测试兴趣所致,不被推荐.
相关文章参考:
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者