Oracle Multitenant Environment (四) Create One or More CDBs
Using the CREATE DATABASE Statement to Create a CDB
This section describes creating a CDB using the CREATE DATABASE SQL statement.
Note:
Oracle strongly recommends using the Database Configuration Assistant (DBCA) instead of the CREATE DATABASE SQL statement to create a CDB, because using DBCA is a more automated approach, and your CDB is ready to use when DBCA completes.
This section contains the following topics:
About Creating a CDB with the CREATE DATABASE Statement
Creating a CDB using the CREATE DATABASE SQL statement is very similar to creating a non-CDB. This section describes additional requirements for creating a CDB.
Using the CREATE DATABASE SQL statement is a more manual approach to creating a CDB than using DBCA. One advantage of using this statement over using DBCA is that you can create CDBs from within scripts.
When you create a CDB using the CREATE DATABASE SQL statement, you must enable PDBs and specify the names and locations of the root's files and the seed's files.
This section contains the following topics:
See Also:
Oracle Database Concepts for information about a CDB's files
About Enabling PDBs
To create a CDB, the CREATE DATABASE statement must include the ENABLE PLUGGABLE DATABASE clause. When this clause is included, the statement creates a CDB with the root and the seed.
When the ENABLE PLUGGABLE DATABASE clause is not included in the CREATE DATABASE statement, the newly created database is a non-CDB. The statement does not create the root and the seed, and the non-CDB can never contain PDBs.
About the Names and Locations of the Root's Files and the Seed's Files
The CREATE DATABASE statement uses the root's files (such as data files) to generate the names of the seed's files. You must specify the names and locations of the root's files and the seed's files. After the CREATE DATABASE statement completes successfully, you can use the seed and its files to create new PDBs. The seed cannot be modified after it is created.
You must specify the names and locations of the seed's files in one of the following ways:
If you use more than one of these methods, then the CREATE DATABASE statement uses one method in the order of precedence of the previous list. For example, if you use all of the methods, then the CREATE DATABASE statement only uses the specifications in the SEED FILE_NAME_CONVERT clause.
The SEED FILE_NAME_CONVERT Clause
The SEED FILE_NAME_CONVERT clause of the CREATE DATABASE statement specifies how to generate the names of the seed's files using the names of root's files.
You can use this clause to specify one of the following options:
One or more file name patterns and replacement file name patterns, in the following form:
'string1' , 'string2' , 'string3' , 'string4' , ...
The string2 file name pattern replaces the string1 file name pattern, and the string4 file name pattern replaces the string3 file name pattern. You can use as many pairs of file name pattern and replacement file name pattern strings as required.
If you specify an odd number of strings (the last string has no corresponding replacement string), then an error is returned. Do not specify more than one pattern/replace string that matches a single file name or directory.
File name patterns cannot match files or directories managed by Oracle Managed Files.
NONEwhen no file names should be converted. Omitting theSEEDFILE_NAME_CONVERTclause is the same as specifyingNONE.
Example 37-1 SEED FILE_NAME_CONVERT Clause
This SEED FILE_NAME_CONVERT clause generates file names for the seed's files in the /oracle/pdbseed directory using file names in the /oracle/dbs directory.
SEED
FILE_NAME_CONVERT = ('/oracle/dbs/', '/oracle/pdbseed/')
Oracle Managed Files
When Oracle Managed Files is enabled, it can determine the names and locations of the seed's files.
The PDB_FILE_NAME_CONVERT Initialization Parameter
The PDB_FILE_NAME_CONVERT initialization parameter can specify the names and locations of the seed's files. To use this technique, ensure that thePDB_FILE_NAME_CONVERT initialization parameter is included in the initialization parameter file when you create the CDB.
File name patterns specified in this initialization parameter cannot match files or directories managed by Oracle Managed Files.
About the Attributes of the Seed's Data Files
The seed can be used as a template to create new PDBs. The attributes of the data files for the root's SYSTEM and SYSAUX tablespaces might not be suitable for the seed. In this case, you can specify different attributes for the seed's data files by using the tablespace_datafile clauses. Use these clauses to specify attributes for all data files comprising the SYSTEM and SYSAUX tablespaces in the seed. The values inherited from the root are used for any attributes whose values have not been provided.
The syntax of the tablespace_datafile clauses is the same as the syntax for a data file specification, excluding the name and location of the data file and the REUSE attribute. You can use the tablespace_datafile clauses with any of the methods for specifying the names and locations of the seed's data files described in "About the Names and Locations of the Root's Files and the Seed's Files".
The tablespace_datafile clauses do not specify the names and locations of the seed's data files. Instead, they specifies attributes of SYSTEM and SYSAUXdata files in the seed that differ from those in the root. If SIZE is not specified in the tablespace_datafile clause for a tablespace, then data file size for the tablespace is set to a predetermined fraction of the size of a corresponding root data file.
Example 37-2 Using the tablespace_datafile Clauses
Assume the following CREATE DATABASE clauses specify the names, locations, and attributes of the data files that comprise the SYSTEM and SYSAUXtablespaces in the root.
DATAFILE '/u01/app/oracle/oradata/newcdb/system01.dbf' SIZE 325M REUSE
SYSAUX DATAFILE '/u01/app/oracle/oradata/newcdb/sysaux01.dbf' SIZE 325M REUSE
You can use the following tablespace_datafile clauses to specify different attributes for these data files:
SEED
SYSTEM DATAFILES SIZE 125M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED
SYSAUX DATAFILES SIZE 100M
In this example, the data files for the seed's SYSTEM and SYSAUX tablespaces inherit the REUSE attribute from the root's data files. However, the following attributes of the seed's data files differ from the root's:
The data file for the
SYSTEMtablespace is 125 MB for the seed and 325 MB for the root.AUTOEXTENDis enabled for the seed'sSYSTEMdata file, and it is disabled by default for the root'sSYSTEMdata file.The data file for the
SYSAUXtablespace is 100 MB for the seed and 325 MB for the root.
Creating a CDB with the CREATE DATABASE Statement
When you use the CREATE DATABASE statement to create a CDB, you must complete additional actions before you have an operational CDB. These actions include building views on the data dictionary tables and installing standard PL/SQL packages in the root. You perform these actions by running the supplied catcdb.sql script.
The examples in the following steps create a CDB named newcdb.
To create a CDB with the CREATE DATABASE statement:
Complete steps 1 - 8 in "Creating a Database with the CREATE DATABASE Statement".
To create a CDB, the
ENABLE_PLUGGABLE_DATABASEinitialization parameter must be set toTRUE.In a CDB, the
DB_NAMEinitialization parameter specifies the name of the root. Also, it is common practice to set the SID to the name of the root. The maximum number of characters for this name is 30. For more information, see the discussion of theDB_NAMEinitialization parameter in Oracle Database Reference.Use the
CREATEDATABASEstatement to create a new CDB.The following examples illustrate using the
CREATEDATABASEstatement to create a new CDB:Example 1: Creating a CDB Without Using Oracle Managed Files
The following statement creates a CDB named
newcdb. This name must agree with theDB_NAMEparameter in the initialization parameter file. This example assumes the following:The initialization parameter file specifies the number and location of control files with the
CONTROL_FILESparameter.The directory
/u01/app/oracle/oradata/newcdbexists.The directory
/u01/app/oracle/oradata/pdbseedexists.The directories
/u01/logs/myand/u02/logs/myexist.
This example includes the
ENABLEPLUGGABLEDATABASEclause to create a CDB with the root and the seed. This example also includes theSEEDFILE_NAME_CONVERTclause to specify the names and locations of the seed's files. This example also includestablespace_datafileclauses that specify attributes of the seed's data files for theSYSTEMandSYSAUXtablespaces that differ from the root's.CREATE DATABASE newcdb
USER SYS IDENTIFIED BY sys_password
USER SYSTEM IDENTIFIED BY system_password
LOGFILE GROUP 1 ('/u01/logs/my/redo01a.log','/u02/logs/my/redo01b.log')
SIZE 100M BLOCKSIZE 512,
GROUP 2 ('/u01/logs/my/redo02a.log','/u02/logs/my/redo02b.log')
SIZE 100M BLOCKSIZE 512,
GROUP 3 ('/u01/logs/my/redo03a.log','/u02/logs/my/redo03b.log')
SIZE 100M BLOCKSIZE 512
MAXLOGHISTORY 1
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 1024
CHARACTER SET AL32UTF8
NATIONAL CHARACTER SET AL16UTF16
EXTENT MANAGEMENT LOCAL
DATAFILE '/u01/app/oracle/oradata/newcdb/system01.dbf'
SIZE 700M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
SYSAUX DATAFILE '/u01/app/oracle/oradata/newcdb/sysaux01.dbf'
SIZE 550M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
DEFAULT TABLESPACE deftbs
DATAFILE '/u01/app/oracle/oradata/newcdb/deftbs01.dbf'
SIZE 500M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED
DEFAULT TEMPORARY TABLESPACE tempts1
TEMPFILE '/u01/app/oracle/oradata/newcdb/temp01.dbf'
SIZE 20M REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
UNDO TABLESPACE undotbs1
DATAFILE '/u01/app/oracle/oradata/newcdb/undotbs01.dbf'
SIZE 200M REUSE AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
ENABLE PLUGGABLE DATABASE
SEED
FILE_NAME_CONVERT = ('/u01/app/oracle/oradata/newcdb/',
'/u01/app/oracle/oradata/pdbseed/')
SYSTEM DATAFILES SIZE 125M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED
SYSAUX DATAFILES SIZE 100M
USER_DATA TABLESPACE usertbs
DATAFILE '/u01/app/oracle/oradata/pdbseed/usertbs01.dbf'
SIZE 200M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED;A CDB is created with the following characteristics:
The CDB is named
newcdb. Its global database name isnewcdb.us.example.com, where the domain portion (us.example.com) is taken from the initialization parameter file.Three control files are created as specified by the
CONTROL_FILESinitialization parameter, which was set before CDB creation in the initialization parameter file. See "Sample Initialization Parameter File" and "Specifying Control Files".The passwords for user accounts
SYSandSYSTEMare set to the values that you specified. The passwords are case-sensitive. The two clauses that specify the passwords forSYSandSYSTEMare not mandatory in this release of Oracle Database. However, if you specify either clause, then you must specify both clauses. For further information about the use of these clauses, see "Protecting Your Database: Specifying Passwords for Users SYS and SYSTEM".The new CDB has three online redo log file groups, each with two members, as specified in the
LOGFILEclause.MAXLOGFILES,MAXLOGMEMBERS, andMAXLOGHISTORYdefine limits for the redo log. See "Choosing the Number of Redo Log Files". The block size for the redo logs is set to 512 bytes, the same size as physical sectors on disk. TheBLOCKSIZEclause is optional if block size is to be the same as physical sector size (the default). Typical sector size and thus typical block size is 512. Permissible values forBLOCKSIZEare 512, 1024, and 4096. For newer disks with a 4K sector size, optionally specifyBLOCKSIZEas 4096. See "Planning the Block Size of Redo Log Files" for more information.MAXDATAFILESspecifies the maximum number of data files that can be open in the CDB. This number affects the initial sizing of the control file.Note:
You can set several limits during CDB creation. Some of these limits are limited by and affected by operating system limits. For example, if you set
MAXDATAFILES, then Oracle Database allocates enough space in the control file to storeMAXDATAFILESfilenames, even if the CDB has only one data file initially. However, because the maximum control file size is limited and operating system dependent, you might not be able to set allCREATE DATABASEparameters at their theoretical maximums.For more information about setting limits during CDB creation, see the Oracle Database SQL Language Referenceand your operating system–specific Oracle documentation.
The
AL32UTF8character set is used to store data in this CDB.The
AL16UTF16character set is specified as theNATIONAL CHARACTER SETused to store data in columns specifically defined asNCHAR,NCLOB, orNVARCHAR2.The
SYSTEMtablespace, consisting of the operating system file/u01/app/oracle/oradata/newcdb/system01.dbf, is created as specified by theDATAFILEclause. If a file with that name already exists, then it is overwritten.The
SYSTEMtablespace is created as a locally managed tablespace. See "Creating a Locally Managed SYSTEM Tablespace".A
SYSAUXtablespace is created, consisting of the operating system file/u01/app/oracle/oradata/newcdb/sysaux01.dbfas specified in theSYSAUX DATAFILEclause. See "About the SYSAUX Tablespace".The
DEFAULTTABLESPACEclause creates and names a default permanent tablespace for this CDB.The
DEFAULT TEMPORARY TABLESPACEclause creates and names a default temporary tablespace for this CDB. See "Creating a Default Temporary Tablespace".The
UNDO TABLESPACEclause creates and names an undo tablespace that is used to store undo data for this CDB. In a CDB, an undo tablespace is required to manage the undo data, and theUNDO_MANAGEMENTinitialization parameter must be set toAUTO. If you omit this parameter, then it defaults toAUTO. See "Using Automatic Undo Management: Creating an Undo Tablespace".Redo log files will not initially be archived, because the
ARCHIVELOGclause is not specified in thisCREATEDATABASEstatement. This is customary during CDB creation. You can later use anALTER DATABASEstatement to switch toARCHIVELOGmode. The initialization parameters in the initialization parameter file fornewcdbrelating to archiving areLOG_ARCHIVE_DEST_1andLOG_ARCHIVE_FORMAT. See Chapter 12, "Managing Archived Redo Log Files".The
ENABLEPLUGGABLEDATABASEclause creates a CDB with the root and the seed.SEEDis required for theFILE_NAME_CONVERTclause and thetablespace_datafileclauses.The
FILE_NAME_CONVERTclause generates file names for the seed's files in the /u01/app/oracle/oradata/pdbseed directory using file names in the /u01/app/oracle/oradata/newcdb directory.The
SYSTEMDATAFILESclause specifies attributes of the seed'sSYSTEMtablespace data file(s) that differ from the root's.The
SYSAUXDATAFILESclause specifies attributes of the seed'sSYSAUXtablespace data file(s) that differ from the root's.The
USER_DATATABLESPACEclause creates and names the seed's tablespace for storing user data and database options such as Oracle XML DB. PDBs created using the seed include this tablespace and its data file. The tablespace and data file specified in this clause are not used by the root.
Note:
Ensure that all directories used in the
CREATEDATABASEstatement exist. TheCREATEDATABASEstatement does not create directories.If you are not using Oracle Managed Files, then every tablespace clause must include a
DATAFILEorTEMPFILEclause.If CDB creation fails, then you can look at the alert log to determine the reason for the failure and to determine corrective actions. See "Viewing the Alert Log". If you receive an error message that contains a process number, then examine the trace file for that process. Look for the trace file that contains the process number in the trace file name. See "Finding Trace Files" for more information.
To resubmit the
CREATEDATABASEstatement after a failure, you must first shut down the instance and delete any files created by the previousCREATEDATABASEstatement.
Oracle Multitenant Environment (四) Create One or More CDBs的更多相关文章
- Oracle Multitenant Environment (五) Create PDB
Creating and Removing PDBs with SQL*Plus This chapter contains the following topics: About Creating ...
- Oracle Multitenant Environment (一) About
About oracle mulittenant environment The multitenant architecture enables an Oracle database to func ...
- Oracle Multitenant Environment (三) Plan for a cdb
Below tables contains contant you need to consider while planning for a CDB. Action Considerations f ...
- Oracle Multitenant Environment (二) Purpose
Purpose of a Multitenant Environment A multitenant environment enables the central management of mul ...
- Oracle创建表语句(Create table)语法详解及示例、、 C# 调用Oracle 存储过程返回数据集 实例
Oracle创建表语句(Create table)语法详解及示例 2010-06-28 13:59:13| 分类: Oracle PL/SQL|字号 订阅 创建表(Create table)语法详解 ...
- Oracle 物理结构(四) 文件-控制文件
一.什么是控制文件 控制文件是Oracle数据库中十分重要的文件.Oracle启动时,首先会读取参数文件,读取了参数文件,实例所需要的共享内存和后台进程就可以启动了,这就是数据库实例的nomunt阶段 ...
- oracle 学习笔记(四)
1. SQL(高级查询) 1.1. 子查询 1.1.1. 子查询在WHERE子句中 在SELECT查询中,在WHERE查询条件中的限制条件不是一个确定的值,而是来自于另外一个查询的结果.为了给查询提供 ...
- Oracle补习班第四天
Everything has its time and that time must be watched. 万物皆有时,时来不可失 1,管理参数文件 参数文件分两种spfile二进制文件和pfile ...
- ORACLE profile列4 --CREATE PROFILE
这个博客是ORACLE profile系列第四部分.主要说一下,假设你创建profile而使用profile资源和password控制 CREATE PROFILE Note: Oracle reco ...
随机推荐
- PHP 操作数据库乱码 以及调试
mysql> show create database pxscj;+----------+--------------------------------------------------- ...
- LN : leetcode 53 Maximum Subarray
lc 53 Maximum Subarray 53 Maximum Subarray Find the contiguous subarray within an array (containing ...
- git 删除分支如何恢复
强制删除了一个分支而后又想重新使用这个分支,该怎么找回该分支上的代码呢? 一:问题描述: 今天师父说上线几个功能,让我把开发的分支推送到远程.当打开git就傻眼了,之前开发好的分支被我删除了,就连推送 ...
- Android Studio 1.5启动出现“SDK Manager: failed to install”问题的解决
问题描述 Android Studio 1.5是当前最新Android手机应用开发平台,下载bundle版安装后,启动Studio后出现“SDK Manager: failed to install” ...
- servU服务器连接不上问题的解决
在服务器上安装了servU64位版,建立了用户,设置了防火墙,正常启动. 但在客户端发出FTP://服务器IP 命令后,弹出输入用户名和密码的对话框,输入正确的用户名和密码后,却始终连接不上. ftp ...
- 后台接收不到postman发送的xml参数的解决办法
首先在body下复制需要传的xml: 然后点击url右边的Params,添加key和value.value和body下的xml是一样的: 最后点击send,后台就能接收到参数了.
- 【sqli-labs】 对于less34 less36的宽字节注入的一点深入
1.AddSlashes() 首先来观察一下是如何通过构造吃掉转义字符的 先将less 34的网页编码换成gbk 加上一些输出 echo "Before addslashes(): &quo ...
- js一般用法
<1> 通过id查找html元素 var x=document.getElementById("intro"); <2> 通过标签名查找html元素 v ...
- 王垠:写给支持和反对《完全用Linux工作》的人们
王垠:写给支持和反对<完全用Linux工作>的人们 在一阵阵唾骂和欢呼声中,<完全用linux工作>被转载到了天涯海角.很多人支持我,也有很多人唾骂我.我不知道它是怎样流传到那 ...
- Iframe用法精析
String.prototype.match()中正则表达式的g标识存在的时候,函数不会捕获子表达式中的内容,不存在的时候可以. RegExp.prototype.exec()中g的存在只会影响,Re ...