Oracle  12c Database의 RAW device 지원 불가


Oracle 12c 매뉴얼 상의 De-support로 명시된 것과는 별개로 Oracle 12c Database에서 기술적인 RAW device 지원 여부는 역시 매뉴얼대로 “사용 불가” 입니다.


Oracle 12c 부터  ASM + FILE (클러스터 파일시스템) 만 지원하게 된다고 풍문이 확신이 되었네요.

기존에는 Upgrade를 통해 로우볼륨 + Oracle 11g 환경을 만들었엇죠...하지만...ㄷㄷㄷ

Oracle 12c 에서는 기술적으로 데이터 파일 생성/추가가 안됩니다. 

따라서 지금부터 운영 환경 컨버전 준비를 시작해야 할 것 같습니다.

 도입비용이 무료인 ASM or 도입비용을 부담하면서 클러스터 파일시스템 솔루션을 구매 해야 합니다.


Announcement of De-Support of using RAW devices in Oracle Database Version 12.1 (문서 ID 578455.1)


-- 발췌 내용

Starting with Oracle Database version 12.1 (release date TBD), support for storing data files, spfiles, controlfiles, online redo logfiles, OCRs and voting files on raw devices directly will end. This means commands such as the following will report an error while attempting to use raw devices directly in Oracle Database Version 12.1:

SQL> create tablespace ABC DATAFILE '/dev/raw/raw1' size 2GB;


Note that while the direct use of raw devices will be de-supported for Oracle Database 12.1, customers can choose to create Oracle ASM diskgroups on top of raw devices. While it is recommended to store all shared files on ASM diskgroups, storing those files on NFS or certified cluster file systems remains supported.

The following SQL commands will not return an error while attempting to use raw devices. Reason: the raw devices in the example below are used indirectly via Oracel ASM (no direct use of raw devices here):

SQL>alter diskgroup MYDG add disk '/dev/raw/ABC1.dbf';
OR
SQL>create diskgroup MYDB EXTERNAL REDUNDANCY disk 'dev/raw/ABC1.dbf'


Then use the following command to create the tablespace

SQL> create tablespace ABC DATAFILE '+MYDG' size 2GB;

 


추가적으로 11G 오라클 SE의 경우 RAC에서 ASM 만 사용하도록 제한이 있습니다.

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

+ Recent posts