Oracle 12c 命令行創建PDB
阿新 • • 發佈:2018-01-20
res mounted product tin sys 命令行 app erp 令行 1、登陸cdb創建pdb
sqlplus / as sysdba
create pluggable database pdb4
admin user pdb4 identified by pdb4
file_name_convert=(‘/u01/app/oracle/oradata/cdb/pdbseed‘,‘/u01/app/oracle/oradata/cdb/pdb4‘);
2、具體步驟
<roidb01:cdb:/home/oracle>$sqlplus / as sysdba SQL*Plus: Release 12.1.0.2.0 Production on Sat Jan 20 12:07:32 2018 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, OLAP, Advanced Analytics and Real Application Testing options SQL> show con_name CON_NAME ------------------------------ CDB$ROOT SQL> create pluggable database pdb4 2 admin user pdb4 identified by pdb4 3 file_name_convert=(‘/u01/app/oracle/oradata/cdb/pdbseed‘,‘/u01/app/oracle/oradata/cdb/pdb4‘); Pluggable database created. SQL> show pdbs CON_ID CON_NAME OPEN MODE RESTRICTED ---------- ------------------------------ ---------- ---------- 2 PDB$SEED READ ONLY NO 3 PDB1 READ WRITE NO 4 PDB2 READ WRITE NO 5 PDB3 READ WRITE NO 6 PDB4 MOUNTED SQL> alter pluggable database all open; Pluggable database altered. <roidb01:cdb:/u01/app/oracle/oradata/cdb/pdb3>$sqlplus pdb4/[email protected]:1521/pdb4 SQL*Plus: Release 12.1.0.2.0 Production on Sat Jan 20 12:11:50 2018 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, OLAP, Advanced Analytics and Real Application Testing options SQL> show con_name CON_NAME ------------------------------ PDB4 SQL>
Oracle 12c 命令行創建PDB