最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

ConnecttoaPDBofOracle12c

来源:动视网 责编:小采 时间:2020-11-09 07:57:02
文档

ConnecttoaPDBofOracle12c

ConnecttoaPDBofOracle12c:Story about CDB and PDB Oracle12c has a new feature and definition of CDB and PDB. If you first use 12c you will get confused like me. So that is necessary to know some basic definitions before you start. Oracle's official document is alwa
推荐度:
导读ConnecttoaPDBofOracle12c:Story about CDB and PDB Oracle12c has a new feature and definition of CDB and PDB. If you first use 12c you will get confused like me. So that is necessary to know some basic definitions before you start. Oracle's official document is alwa


Story about CDB and PDB Oracle12c has a new feature and definition of CDB and PDB. If you first use 12c you will get confused like me. So that is necessary to know some basic definitions before you start. Oracle's official document is alwa

Story about CDB and PDB

Oracle12c has a new feature and definition of CDB and PDB. If you first use 12c you will get confused like me. So that is necessary to know some basic definitions before you start. Oracle's official document is always the best material.

What is CBD and PDB and why introduce them?


Login a CBD

[oracle@ol65 ~]$ sqlplus /nolog

SQL*Plus: Release 12.1.0.2.0 Production on Mon Oct 27 23:07:56 2014

Copyright (c) 1982, 2014, Oracle. All rights reserved.

SQL> conn sys@orcl as sysdba
Enter password: 
Connected.
SQL> sho con_name

CON_NAME
------------------------------
CDB$ROOT
SQL> 
** sho con_name - show current container name. Root container is always called CDB#ROOT.

How many PDBs in your root container now?

SQL> sho pdbs

 CON_ID CON_NAME	 OPEN MODE RESTRICTED
---------- ------------------------------ ---------- ----------
	 2 PDB$SEED	 READ ONLY NO
	 3 PDBORCL	 MOUNTED
SQL> 


** PDB$SEED is a seed PDB, as its name Oracle12c will take is
Default status of a new PDB is mounted. It's not running, you have to 'open' it before you start using it.


Open a PDB

You must have sysdba privilege.

SQL> alter pluggable database PDBORCL open;

Pluggable database altered.

SQL> sho pdbs

 CON_ID CON_NAME	 OPEN MODE RESTRICTED
---------- ------------------------------ ---------- ----------
	 2 PDB$SEED	 READ ONLY NO
	 3 PDBORCL	 READ WRITE NO
SQL> 

Login a PDB

SQL> sho con_name

CON_NAME
------------------------------
CDB$ROOT
SQL> alter session set container=PDBORCL;

Session altered.

SQL> sho con_name

CON_NAME
------------------------------
PDBORCL
SQL> 
Now you login a PDB. Now you can create a new user as you operate a Oracle DB before 12c. This user is not common user. It's a user for this PDB. You also can understand PDB as a general DB of the version before 12c.


Login Root Container again and Stop a PDB

SQL> conn sys as sysdba
Enter password: 
Connected.
SQL> alter pluggable database PDBORCL close immediate;

Pluggable database altered.

SQL> 

Register a Entry of a PDB

Edit config file /$ORACLE_HOME/network/admin/tnsnames.ora.

ORCL =
 (DESCRIPTION =
 (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
 (CONNECT_DATA =
 (SERVER = DEDICATED)
 (SERVICE_NAME = orcl.localdomain)
 )
 )

PDBORCL =
 (DESCRIPTION =
 (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
 (CONNECT_DATA =
 (SERVER = DEDICATED)
 (SERVICE_NAME = pdborcl.localdomain)
 )
 )

Save and quit. Go to open this PDB again. Now you can access PDBORCL by service name.

[oracle@ol65 admin]$ sqlplus sys@pdborcl as sysdba

SQL*Plus: Release 12.1.0.2.0 Production on Tue Oct 28 00:08:52 2014

Copyright (c) 1982, 2014, Oracle. All rights reserved.

Enter password: 

Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options

SQL> 
And the most importance is that now you are able to remotely connect this PDB!


Now you application can use this DB as well.

文档

ConnecttoaPDBofOracle12c

ConnecttoaPDBofOracle12c:Story about CDB and PDB Oracle12c has a new feature and definition of CDB and PDB. If you first use 12c you will get confused like me. So that is necessary to know some basic definitions before you start. Oracle's official document is alwa
推荐度:
标签: 12 oracle of
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top