RMAN備份中Create catalog時候 ORA-00955及RMAN-06433,RMAN-06429,ORA-01658處理

tolywang發表於2007-07-20

RMAN備份測試時候,其中遇到很多常見的問題,逐個解決。

SQL> show parameter db_name

NAME TYPE
------------------------------------ ----------------------
VALUE
------------------------------
db_name string
rman

SQL>
SQL> create tablespace rman_ts
2 datafile 'D:oracleoradata man man_ts.dbf'
3 size 200m extent management local uniform size 5m ;

已建立表格空間.


SQL>
SQL> create user rman identified by rman
2 default tablespace rman_ts
3 temporary tablespace temp ;

已建立使用者.

SQL> grant resource , connect , recovery_catalog_owner to rman ;

順利授權.

SQL> exit
已切斷與 Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production 的連線

C:>rman catalog msglog=rman.log
RMAN> create catalog ;
RMAN> exit

C:>rman target catalog

Recovery Manager: 版本 9.2.0.1.0 - Production

Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.

已連線到目標資料庫: TEST (DBID=1926579826)
已連線至復原目錄資料庫
未安裝復原目錄

RMAN> create catalog tablespace rman_ts

來源檔案中發生錯誤: krmk.pc, 行: 6702
SQL 敘述句的文字有誤: ??
復原目錄資料庫 ORACLE 發生錯誤: ORA-00955: 此一名稱已被一個現有物件使用

RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-06433: error installing recovery catalog

RMAN> register database;

未安裝復原目錄
未安裝復原目錄
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of register command at 07/20/2007 16:18:10
RMAN-06429: RCVCAT database is not compatible with this version of RMAN

RMAN> drop catalog;

復原目錄擁有者為 RMAN
請再次輸入 DROP CATALOG 命令, 確認除去目錄

RMAN> drop catalog ;

已捨棄復原目錄

RMAN> create catalog ;

來源檔案中發生錯誤: krmk.pc, 行: 6702
SQL 敘述句的文字有誤: 鉧
復原目錄資料庫 ORACLE 發生錯誤: ORA-01658: 無法建立表格空間 RMAN_TS 中區段的 INI
TIAL 擴充區塊

RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-06433: error installing recovery catalog

不行,加大RMAN_TS表空間到600M,還是不行。

只有刪除使用者RMAN, 重新建立。

C:>sqlplus "/as sysdba"

SQL*Plus: Release 9.2.0.1.0 - Production on 星期五 7月 20 16:59:41 2007

Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

連線到:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production

SQL>
SQL>
SQL> drop user rman cascade;

已刪除使用者.

SQL> create user rman identified by rman
2 default tablespace rman_ts
3 temporary tablespace temp ;

已建立使用者.

SQL> grant resource , connect , recovery_catalog_owner to rman ;

順利授權.

SQL>
SQL> exit
已切斷與 Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production 的連線

C:>rman target catalog

Recovery Manager: 版本 9.2.0.1.0 - Production

Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.

已連線到目標資料庫: TEST (DBID=1926579826)
已連線至復原目錄資料庫
未安裝復原目錄

RMAN> create catalog tablespace rman_ts

已建立復原目錄

RMAN> register database ;

在復原目錄註冊的資料庫
啟動復原目錄的完整再同步
完整再同步完成

RMAN>

-----------------------------------------------------------------------------------------------------

以上問題總結一下:

1. 如果原來建立過CATALOG,刪除沒有刪乾淨,可能導致ORA-00955錯誤,直接解決方式是 RMAN > DROP CATALOG ; 然後CREATE CAGALOG .

2. 如果題是RMAN_TS (RMAN使用者預設表空間)不足或INIT不足等,第一個是可能RMAN_TS的確太少,第二個是刪除RMAN使用者,釋放空間,重新建立RMAN使用者及CREATE CATLOG .

---------------------------------------------------------------------------------------------------------

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-84808/,如需轉載,請註明出處,否則將追究法律責任。

相關文章