更改資料庫DBID
當克隆一個資料庫到另外一臺機器上,具有相同的資料庫名稱或者如果一個新的資料庫名稱是透過重建的控制檔案,
那麼需要改變DBBID,特別是如果是新的資料庫在相同的rman catalog是註冊。
尤其是如果使用rman catalog,rman catalog中只允許註冊一個DBID,相同DBID不能註冊在同一catalog當中,下面演示改變DBID:
1、關閉資料庫,啟動到mount狀態
SYS@jzh>shu immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SYS@jzh>startup mount
ORACLE instance started.
Total System Global Area 626327552 bytes
Fixed Size 2230952 bytes
Variable Size 444597592 bytes
Database Buffers 176160768 bytes
Redo Buffers 3338240 bytes
Database mounted.
2、確認sys使用者可以連線
[oracle@jzh5 ~]$ sqlplus sys/oracle@jzh as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on Sun Sep 13 08:43:52 2015
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
3、更改DBID
[oracle@jzh5 ~]$ cd $ORACLE_HOME/bin
[oracle@jzh5 bin]$ ./nid target=sys/oracle@jzh
DBNEWID: Release 11.2.0.3.0 - Production on Sun Sep 13 08:45:08 2015
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to database JZH (DBID=233255254)----當前資料庫DBID
Connected to server version 11.2.0
Control Files in database:
/u01/app/oracle/oradata/jzh/control01.ctl
/u01/app/oracle/fast_recovery_area/jzh/control02.ctl
Change database ID of database JZH? (Y/[N]) => y----是否更改DBID,輸入Y
Proceeding with operation
Changing database ID from 233255254 to 249044244 -----DBID從233255254更改為249044244
Control File /u01/app/oracle/oradata/jzh/control01.ctl - modified
Control File /u01/app/oracle/fast_recovery_area/jzh/control02.ctl - modified
Datafile /u01/app/oracle/oradata/jzh/system01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/sysaux01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/undotbs01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/users01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/test01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/temp01.db - dbid changed
Control File /u01/app/oracle/oradata/jzh/control01.ctl - dbid changed
Control File /u01/app/oracle/fast_recovery_area/jzh/control02.ctl - dbid changed
Instance shut down
Database ID for database JZH changed to 249044244.
All previous backups and archived redo logs for this database are unusable.---以前的資料庫與歸檔備份現在不可用
Database is not aware of previous backups and archived logs in Recovery Area.
Database has been shutdown, open database with RESETLOGS option.----資料庫被shutdown,以resetlogs開啟。
Succesfully changed database ID.
DBNEWID - Completed succesfully.
4、開啟資料庫
SYS@jzh>startup mount
ORACLE instance started.
Total System Global Area 626327552 bytes
Fixed Size 2230952 bytes
Variable Size 444597592 bytes
Database Buffers 176160768 bytes
Redo Buffers 3338240 bytes
Database mounted.
SYS@jzh>alter database open resetlogs;
Database altered.
5、檢查新的DBID
[oracle@jzh5 ~]$ rman target /
Recovery Manager: Release 11.2.0.3.0 - Production on Sun Sep 13 08:50:45 2015
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: JZH (DBID=249044244)----新的DBID
由於更改DBID會導致以前的備份失效,因此在更改DBID時還需要慎重考慮。
那麼需要改變DBBID,特別是如果是新的資料庫在相同的rman catalog是註冊。
尤其是如果使用rman catalog,rman catalog中只允許註冊一個DBID,相同DBID不能註冊在同一catalog當中,下面演示改變DBID:
1、關閉資料庫,啟動到mount狀態
SYS@jzh>shu immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SYS@jzh>startup mount
ORACLE instance started.
Total System Global Area 626327552 bytes
Fixed Size 2230952 bytes
Variable Size 444597592 bytes
Database Buffers 176160768 bytes
Redo Buffers 3338240 bytes
Database mounted.
2、確認sys使用者可以連線
[oracle@jzh5 ~]$ sqlplus sys/oracle@jzh as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on Sun Sep 13 08:43:52 2015
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
3、更改DBID
[oracle@jzh5 ~]$ cd $ORACLE_HOME/bin
[oracle@jzh5 bin]$ ./nid target=sys/oracle@jzh
DBNEWID: Release 11.2.0.3.0 - Production on Sun Sep 13 08:45:08 2015
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to database JZH (DBID=233255254)----當前資料庫DBID
Connected to server version 11.2.0
Control Files in database:
/u01/app/oracle/oradata/jzh/control01.ctl
/u01/app/oracle/fast_recovery_area/jzh/control02.ctl
Change database ID of database JZH? (Y/[N]) => y----是否更改DBID,輸入Y
Proceeding with operation
Changing database ID from 233255254 to 249044244 -----DBID從233255254更改為249044244
Control File /u01/app/oracle/oradata/jzh/control01.ctl - modified
Control File /u01/app/oracle/fast_recovery_area/jzh/control02.ctl - modified
Datafile /u01/app/oracle/oradata/jzh/system01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/sysaux01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/undotbs01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/users01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/test01.db - dbid changed
Datafile /u01/app/oracle/oradata/jzh/temp01.db - dbid changed
Control File /u01/app/oracle/oradata/jzh/control01.ctl - dbid changed
Control File /u01/app/oracle/fast_recovery_area/jzh/control02.ctl - dbid changed
Instance shut down
Database ID for database JZH changed to 249044244.
All previous backups and archived redo logs for this database are unusable.---以前的資料庫與歸檔備份現在不可用
Database is not aware of previous backups and archived logs in Recovery Area.
Database has been shutdown, open database with RESETLOGS option.----資料庫被shutdown,以resetlogs開啟。
Succesfully changed database ID.
DBNEWID - Completed succesfully.
4、開啟資料庫
SYS@jzh>startup mount
ORACLE instance started.
Total System Global Area 626327552 bytes
Fixed Size 2230952 bytes
Variable Size 444597592 bytes
Database Buffers 176160768 bytes
Redo Buffers 3338240 bytes
Database mounted.
SYS@jzh>alter database open resetlogs;
Database altered.
5、檢查新的DBID
[oracle@jzh5 ~]$ rman target /
Recovery Manager: Release 11.2.0.3.0 - Production on Sun Sep 13 08:50:45 2015
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: JZH (DBID=249044244)----新的DBID
由於更改DBID會導致以前的備份失效,因此在更改DBID時還需要慎重考慮。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10271187/viewspace-1798516/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- DBNEWIN工具使用一:更改DBID
- nid 改變資料庫名,DBID資料庫
- Oracle NID工具修改資料庫DBID和資料庫名稱Oracle資料庫
- 更改資料庫埠號資料庫
- 更改資料庫表名資料庫
- 更改資料庫的相容模式資料庫模式
- MySQL 更改資料庫資料儲存目錄MySql資料庫
- 更改資料庫為歸檔模式資料庫模式
- 更改Oracle資料庫的SIDOracle資料庫
- Postgresql10資料庫之更改資料庫的名稱SQL資料庫
- oracle資料庫的字符集更改Oracle資料庫
- oracle資料庫更改歸檔路徑Oracle資料庫
- Ubuntu 上更改 MySQL 資料庫資料儲存目錄UbuntuMySql資料庫
- 更改資料庫裸裝置資料檔案的位置資料庫
- Django中更改預設資料庫為mysqlDjango資料庫MySql
- 更改MYSQL資料庫不區分大小寫MySql資料庫
- 更改系統資料庫的排序規則資料庫排序
- Backup And Recovery User's Guide-為完全資料庫恢復做準備-確定資料庫的DBIDGUIIDE資料庫
- [20161003]如何知道資料庫的dbid.txt資料庫
- Linux CentOS更改MySQL資料庫目錄位置LinuxCentOSMySql資料庫
- 檢視或更改資料庫的恢復模式資料庫模式
- oracle11g更改資料庫字符集Oracle資料庫
- dbnewid修改dbid和庫名
- 更改資料庫SID名和db_name名資料庫
- SQLServer埠更改後的資料庫連線方式(轉)SQLServer資料庫
- 【sqlserver】更改資料庫註冊的計算機名稱SQLServer資料庫計算機
- SQL Server埠更改後的資料庫連線方式(轉)SQLServer資料庫
- c#之datagridview控制元件_用於從資料庫重新載入資料和向資料庫提交更改C#View控制元件資料庫
- Win10系統更改庫資料夾存放位置的方法Win10
- 更改RAC資料庫日誌檔案大小及數量 for ASM資料庫ASM
- 10g RAC 資料庫更改IP及回退方案詳解資料庫
- 將RAC資料庫更改為不歸檔日誌的模式資料庫模式
- 在資料庫各種狀態下查詢DBID的五大類十種方法彙總資料庫
- 歸檔路徑更改後,如何對資料庫進行恢復(轉)資料庫
- mybatis(問題1):更改操作執行了,資料庫中卻未執行MyBatis資料庫
- ADFS 部署資料庫AlwaysOn後應用端的連線字串更改資料庫字串
- 更改當前資料庫預設臨時表空間注意事項資料庫
- ABAP 面試問題及答案(一):資料庫更新及更改 SAP Standard (轉)面試資料庫