1 | PDB 이해 |
2 | PDB 퍼포먼스 |
3 | PDB 명명 |
4 | PDB local 유저 |
5 | PDB 엑세스 |
1 | PDB는 독립적이고 분리된 저장소로 특정 애플리케이션의 데이터를 저장할 때 사용할 수 있다. |
2 | local 유저의 권한은 PDB 내로 한정되기 때문에 관리 권한을 제어할 수 있다. |
3 | PDB는 다른 CDB로 쉽게 이동이 가능하다. |
4 | PDB를 쉽게 복사해서 데이터베이스를 구축할 수 있기 때문에 프로비저닝 작업 시간을 줄일 수 있다. |
PDB 증가에 따른 메모리 사용률 |
톰 카이트의 한 마디
멀티테넌트 아키텍처의 주된 이점 중에 하나는 단일 호스트상에 복수 개의 데이터베이스를 운영 할 때 리소스에 대한 소비를 줄일 수 있다는 사실이다. 만약 하나의 오라클 인스턴스가 대략적으로 25개의 백그라운드 프로세스가 떠 있다면 10개의 데이터베이스를 단일 호스트에서 구동한다면 250개의 백그라운드 프로세스가 필요하다는 의미다. 멀티테넌트 아키텍처를 사용하는 것은 동일한 10개의 데이터베이스에 단지 25개의 PGA를 가진 25개의 프로세스만이 사용된다는 것이다. OS나 감소된 인스턴스의 메모리 공간뿐만 아니라 관리되는 프로세스 수도 감소함으로써 리소스 절약 효과는 매우 클 수 있다.
1 | 첫 번째 오는 문자는 반드시 알파벳이어야 한다. |
2 | 그 다음 문자는 알파벳 또는 밑줄(_)이 올 수 있다. |
3 | PDB명은 대소문자를 구분하지 않는다. |
SQL> alter session set container=PDB1;
Session altered.
SQL> create user test identified by test;
User created.
SQL> grant create session to test;
Grant succeeded.
$ sqlplus test/test;
SQL*Plus: Release 12.1.0.2.0 Production on Fri Nov 25 16:30:13 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
ERROR:
ORA-01017: invalid username/password; logon denied
$ sqlplus test/test@192.168.56.101:1521\/PDB1
SQL*Plus: Release 12.1.0.2.0 Production on Fri Nov 25 16:32:16 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Advanced Analytics
and Real Application Testing options
SQL>
$ sqlplus test/test@pdb1
SQL*Plus: Release 12.1.0.2.0 Production on Fri Nov 25 16:33:33 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Last Successful login time: Fri Nov 25 2016 16:32:16 +00:00
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Advanced Analytics
and Real Application Testing options
SQL>
$ sqlplus sys/oracle@pdb1 as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Fri Nov 25 16:34:46 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Advanced Analytics
and Real Application Testing options
SQL>
$ sqlplus sys/oracle@192.168.56.101:1521\/PDB1 as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Fri Nov 25 16:36:06 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Advanced Analytics
and Real Application Testing options
SQL>
- 강좌 URL : http://www.gurubee.net/lecture/4284
- 구루비 강좌는 개인의 학습용으로만 사용 할 수 있으며, 다른 웹 페이지에 게재할 경우에는 출처를 꼭 밝혀 주시면 고맙겠습니다.~^^
- 구루비 강좌는 서비스 제공을 위한 목적이나, 학원 홍보, 수익을 얻기 위한 용도로 사용 할 수 없습니다.