PDB 구성시 자동으로 스타업 시키는 트리거 오라클 문서에서 발췌함
This is oracle document guide about PDB Automatic Startup
Pluggable Database (PDB) Automatic Startup
The 12.1.0.2 patchset has introduced the ability to preserve the startup state of PDBs, so you probably shouldn't be implementing a trigger in the manner discussed in this section.
Prior to 12.1.0.2, when the CDB is started, all PDBs remain in mounted mode. There is no default mechanism to automatically start them when the CDB is started. The way to achieve this is to use a system trigger on the CDB to start some or all of the PDBs.
CREATE OR REPLACE TRIGGER open_pdbs AFTER STARTUP ON DATABASE BEGIN EXECUTE IMMEDIATE 'ALTER PLUGGABLE DATABASE ALL OPEN'; END open_pdbs;
사업자 정보 표시
(주)블루원 | 김홍태 | 서울특별시 용산구 원효로 4가 135 금홍 2빌딩 | 사업자 등록번호 : 106-86-76684 | TEL : 02-3272-7200 | Mail : support_ora@blueone.co.kr | 통신판매신고번호 : 호 | 사이버몰의 이용약관 바로가기
'DB - ORACLE' 카테고리의 다른 글
[TD - ORACLE] undo block corrupt 수정 (0) | 2023.02.01 |
---|---|
[TD - ORACLE] RAC 아카이브 로그 용량 확인 하기 (0) | 2020.07.02 |
[TD - ORACLE] ORACLE RAC IP 변경하기 (스캔 IP, 리스너 IP 포함) (0) | 2020.07.02 |