ORACLE RAC ASM資料檔案遷移OMF檔案報錯ORA-01276解決
ORACLE RAC ASM資料檔案遷移中,如果表空間資料檔案使用OMF自動管理,遷移到新位置時需要重新命名,否則會遇到報錯ORA-01276;解決方法很簡單,就是重新命名取消OMF命名規則即可。
1、建立測試環境
SQL> create bigfile tablespace tbigs datafile '+DATA' size 500m autoextend on;
Tablespace created.
SQL>
SQL> select tablespace_name,file_name from dba_data_files where tablespace_name=upper('tbigs');
TABLESPACE_NAME
------------------------------
FILE_NAME
--------------------------------------------------------------------------------
TBIGS
+DATA/hxcs/datafile/tbigs.412.993211437
SQL>
SQL> create user zhul identified by zhul default tablespace tbigs;
User created.
SQL>
SQL> grant resource to zhul;
Grant succeeded.
SQL> grant create session to zhul;
Grant succeeded.
SQL> conn zhul/zhul
Connected.
SQL>
SQL> insert into t values(1,'aaaaa');
1 row created.
SQL> commit;
SQL> conn / as sysdba
Connected.
SQL> select tablespace_name,file_name ,status from dba_data_files where tablespace_name=upper('tbigs');
TABLESPACE_NAME
------------------------------
FILE_NAME
--------------------------------------------------------------------------------
STATUS
---------
TBIGS
+DATA/hxcs/datafile/tbigs.412.993211437
AVAILABLE
SQL>
2、 測試將tbigs從data磁碟組遷移到fra磁碟組
SQL> select group_number,name from v$asm_diskgroup;
GROUP_NUMBER NAME
------------ ------------------------------
1 DATA
2 FRA
3 OCR
SQL>
3、確定要遷移的表空間和資料檔案
SQL>select name,file#,vd.status from v$datafile vd,dba_data_files ddf where tablespace_name=upper('tbigs') and vd.file#=ddf.file_id
NAME
--------------------------------------------------------------------------------
FILE# STATUS
---------- -------
+DATA/hxcs/datafile/tbigs.412.993211437
26 ONLINE
SQL>
4、將tbigs表空間下線
SQL> alter tablespace tbigs offline;
Tablespace altered.
SQL> select name,file#,vd.status from v$datafile vd,dba_data_files ddf where tablespace_name=upper('tbigs') and vd.file#=ddf.file_id;
NAME
--------------------------------------------------------------------------------
FILE# STATUS
---------- -------
+DATA/hxcs/datafile/tbigs.412.993211437
26 OFFLINE
SQL>
5、 另開會話oracle登陸rman複製資料檔案到新的位置
Ccbsdb@oracle[/home/oracle]export ORACLE_SID=hxcs1
Ccbsdb@oracle[/home/oracle]rman target /
Recovery Manager: Release 11.2.0.3.0 - Production on Mon Nov 26 12:32:55 2018
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: HXCS (DBID=1189523002)
RMAN> copy datafile '+DATA/hxcs/datafile/tbigs.412.993211437' to '+fra/hxcs/tbigs_01.dbf';
Starting backup at 26-NOV-18
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00026 name=+DATA/hxcs/datafile/tbigs.412.993211437
output file name=+FRA/hxcs/tbigs_01.dbf tag=TAG20181126T123515 RECID=1 STAMP=993213316
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01
Finished backup at 26-NOV-18
注意:原資料檔案如果是omf自動管理的,到新位置需要重新命名資料檔名字取消omf,否則報錯:
RMAN> copy datafile '+DATA/hxcs/datafile/tbigs.412.993211437' to '+fra/hxcs/tbigs.412.993211437';
Starting backup at 26-NOV-18
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=4468 instance=hxcs1 device type=DISK
channel ORA_DISK_1: starting datafile copy
input datafile file number=00026 name=+DATA/hxcs/datafile/tbigs.412.993211437
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/26/2018 12:34:13
ORA-01276: Cannot add file +fra/hxcs/tbigs.412.993211437. File has an Oracle Managed Files file name.
6、將tbigs的資料檔案重定向到新位置
SQL> alter database rename file '+DATA/hxcs/datafile/tbigs.412.993211437' to '+fra/hxcs/tbigs_01.dbf';
Database altered.
SQL>
7、將tbigs表空間上線
SQL> alter tablespace tbigs online;
Tablespace altered.
SQL> select name,file#,vd.status from v$datafile vd,dba_data_files ddf where tablespace_name=upper('tbigs') and vd.file#=ddf.file_id;
NAME
--------------------------------------------------------------------------------
FILE# STATUS
---------- -------
+FRA/hxcs/tbigs_01.dbf
26 ONLINE
SQL>
8、檢查資料
SQL> conn zhul/zhul
Connected.
SQL> select * from tab;
TNAME TABTYPE CLUSTERID
------------------------------ ------- ----------
T TABLE
SQL> select * from t;
N1 C1
---------- ----------
1 aaaaa
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29357786/viewspace-2221649/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle之 RAC本地資料檔案遷移至ASMOracleASM
- 如何遷移ASM資料檔案到檔案系統ASM
- 遷移資料庫檔案到ASM資料庫ASM
- oracle 資料檔案遷移Oracle
- oracle資料檔案遷移Oracle
- Oracle_遷移資料檔案Oracle
- 【RAC】RAC本地資料檔案遷移至ASM的方法(3)ASM
- 【RAC】RAC本地資料檔案遷移至ASM的方法(2)ASM
- 【RAC】RAC本地資料檔案遷移至ASM的方法(1)ASM
- 【資料遷移】RMAN遷移資料庫到ASM(二)切換資料檔案到ASM資料庫ASM
- ASM檔案系統遷移ASM
- ASM下遷移控制檔案ASM
- asm 檔案系統遷移ASM
- 資料檔案遷移
- Oracle 表空間資料檔案遷移Oracle
- 資料檔案的遷移
- 使用RMAN遷移檔案系統資料庫到ASM資料庫ASM
- 用RMAN遷移檔案到ASM或從ASM遷出ASM
- 移動資料檔案從ASM到檔案系統ASM
- 【ASM】ASM資料檔案和OS檔案(FILESYSTEM)轉移方法總結ASM
- 資料庫檔案的遷移資料庫
- 用rman從檔案系統遷移資料庫到asm資料庫ASM
- 把檔案系統的資料檔案遷移到ASM儲存ASM
- (個人)Oracle 表空間資料檔案遷移(轉)Oracle
- 四、用rman從檔案系統遷移資料庫到asm資料庫ASM
- oracle中移動控制檔案、資料檔案、日誌檔案Oracle
- oracle資料庫移動資料檔案、日誌檔案和控制檔案Oracle資料庫
- ORACLE移動資料檔案Oracle
- 資料庫從檔案系統遷移到ASM資料庫ASM
- 利用rman將本地資料檔案遷移到asmASM
- 在ASM Diskgroup間移動資料檔案ASM
- windows下oracle資料檔案的遷移和規範WindowsOracle
- [ORACLE ASM] AMDU 恢復資料檔案OracleASM
- oracle 將表空間下的資料檔案從檔案系統遷移到ASM磁碟組OracleASM
- 利用RMAN在檔案系統與ASM之間遷移資料庫ASM資料庫
- 移動資料檔案從檔案系統到ASM磁碟組中ASM
- 遷移案例一: oracle 8i 檔案遷移Oracle
- 線上遷移表空間資料檔案