Datafile 경로 변경 절차(online, offline) File system, ASM

참조문서

(How to Rename or Move Datafiles and Logfiles (문서 ID 115424.1),

How to move a datafile from a file system to ASM (문서 ID 390274.1)

How to move ASM database files from one diskgroup to another ? (문서 ID 330103.1))

²  Datafile 경로 및 이름 변경 시에 가장 중요한 point Online/Offline 여부이다.

SYSTEM 이나 SYSAUX를 변경하기 위해서는 필히 Shutdown 이 필요하고 이외의 Datafile Online Offline 모두 가능하다.

 

A.     OPEN 상태에서 Rename

                         i.         File system

    현재 Datafile 위치와 상태 확인

    tablespace read only 상태로 변경(service 시간 최대화를 위해)

    기존 경로의 datafile 을 새 경로에 copy

    tablespace offline 상태로 변경

    tablespace Rename (두가지 syntax 모두 가능)

    tablespace online 상태로 변경

    tablespace read write 상태로 변경

    새로 변경한 구조를 저장하기 위해 control file trace file backup

-       alter database backup controlfile to trace;

    기존 경로의 datafile 삭제

명령어

SQL> select file_name, status from dba_data_files

where tablespace_name=’EXAMPLES’;

SQL> alter tablespace EXAMPLES read only;

SQL> select tablespace_name, status from dba_tablespaces;

$ cp /u01/oradata/example.dbf /oradata/datafile/example.dbf

SQL> alter tablespace EXAMPLE offline;

SQL> alter database rename file

‘/u01/oradata/example.dbf’ to ‘/oradata/datafile/example.dbf’

또는

SQL> alter tablespace EXAMPLE rename datafile

‘/u01/oradata/example.dbf’ to ‘/oradata/datafile/example.dbf’

SQL> alter tablespace EXAMPLE online;

SQL> alter tablespace EXAMPLE read write;

SQL> alter database backup controlfile to trace

$ rm /u01/oradata/example.dbf

 

                        ii.         ASM

    move datafile 경로 확인 후

    move datafile diskgroup 확인

    Tablespace offline 상태로 변경

    ) DBMS_FILE_TRANSFER Package 이용 해서 수행

) RMAN 을 이용 해서 수행

    Datafile Recover

    Tablespace Online 상태로 변경

    Rename 한 위치 확인

    기존 위치의 datafile 삭제

명령어

SQL> select file_name from dba_data_files;

SQL> select group_number, name from v$asm_diskgroup; (ASM Instance)

SQL> alter database datafile

+ASMDISK2/tech/datafile/users.256.565313’ offline;

l  DBMS_FILE_TRANSFER Package 이용

SQL> create or replace directory tech1 as ‘+ASMDISK1/tech/datafile’;

SQL> alter disgroup ASMDISK2 add directory ‘+ASMDISK2/test’;

(ASM Instance)

SQL> create or replace directory tech2 as ‘+ASMDISK2/test’;

SQL> begin

DBMS_FILE_TRANSFER.COPY_FILE(

source_directory_object => ‘TECH1’,

source_file_name => ‘USERS. users.256.565313’,

destination_directory_object => ‘TECH2’,

destination_file_name => ‘UGERS01.DBF’);

END;

SQL> alter database rename file

‘+ASMDISK2/tech/datafile/ users.256.565313’

to ‘+ASMDISK1/tech/datafile/ users.256.565313’;

 

 

l  RMAN 을 이용

RMAN> copy datafile

‘+ASMDISK2/tech/datafile/users.256.565313’ to  ‘+ASMDISK1’;

RMAN> run { set newname for datafile

‘+ASMDISK2/tech/datafile/ users.256.565313’

to ‘+ASMDISK1/tech/datafile/ users.256.565313’;

switch datafile all; }

 

SQL> recover datafile ‘+ASMDISK1/tech/datafile/ users.256.565313’

SQL> alter database datafile 

‘+ASMDISK1/tech/datafile/ users.256.565313’ online

SQL> select file_name from dba_data_files;

SQL> alter diskgroup ASMDISK2 drop file users.256.565313;

(ASM Instance)

 

B.      Shutdown 상태에서 Rename

                         i.         File system

    Instance Shutdown

    기존 경로의 datafile 을 새 경로에 copy

    Database Mount

    Datafile Rename

    Database Open

    기존 경로의 datafile 삭제

명령어

SQL> shutdown immediate

$ cp /u01/oracle/oradata/system01.dbf /oradata/system01.dbf

SQL> startup mount

SQL> alter database rename file

‘/u01/oracle/oradata/system01.dbf’ to ‘/oradata/system01.dbf;

SQL> alter database open;

$ rm /u01/oracle/oradata/system01.dbf

 

                        ii.         ASM

    새로운 경로에 Copy 본 생성

    Instance Shutdown &  Database mount

    Copy 해 놓은 file 로 변경

    Database recover

 

명령어

RMAN> backup as copy tablespace system format ‘새로운 경로’;

RMAN> shutdown immediate

RMAN> startup mount

RMAN> switch tablespace system to copy;

RMAN> recover database;

 

 

 

사업자 정보 표시
(주)블루원 | 김홍태 | 서울특별시 용산구 원효로 4가 135 금홍 2빌딩 | 사업자 등록번호 : 106-86-76684 | TEL : 02-3272-7200 | Mail : support_ora@blueone.co.kr | 통신판매신고번호 : 호 | 사이버몰의 이용약관 바로가기

'DB - ORACLE > Oracle DB Admin ' 카테고리의 다른 글

파라미터파일 생성 및 변경  (0) 2016.01.01
오라클 단계별 시작 명령어  (0) 2016.01.01
ORACLE SID 변경 방법  (0) 2015.12.31
DB Name 변경 방법  (0) 2015.12.31
오라클 자격증 OCP 유효 일자  (0) 2015.12.22

+ Recent posts