Duplicating a PDB to a New CDB

简介: Duplicating a PDB to a New CDB
Duplicating a PDB to a New CDB

To duplicate the PDB pdb1 to the CDB cdb1, use the following command:

DUPLICATE DATABASE TO cdb1 PLUGGABLE DATABASE pdb1;

To duplicate the PDBs pdb1, pdb3, and pdb4 to the database cdb1, use the following command:

DUPLICATE DATABASE TO cdb1 PLUGGABLE DATABASE pdb1,pdb3,pdb4;

To duplicate all the PDBs in the CDB, except the PDB pdb3, use the following command:

DUPLICATE DATABASE TO cdb1 SKIP PLUGGABLE DATABASE pdb3;
相关文章
|
20天前
|
Python
Python PDB命令介绍
【10月更文挑战第15天】 使用PDB的方式有两种,其中一种是在脚本中添加代码,不觉得这种方式比print好在哪里,所以这种方式此文不表。这里我们只学习PDB的命令行使用方式
33 4
|
6月前
|
C++
VS联网加载系统库的符号链接文件PDB方法
VS联网加载系统库的符号链接文件PDB方法
|
11月前
|
调度
pdb调试cinder代码
pdb调试cinder代码
53 0
|
Oracle 关系型数据库
pdb要有服务后启动才处于open状态
新建的pdb默认处于mount状态,因为只有一个和pdb同名的服务与之相连,这个服务oracle建议用于管理。
100 0
python pdb调试工具详解
python pdb调试工具详解
|
数据库
pdb imp导入数据库,并更改schema
pdb imp导入数据库,并更改schema
411 0
Duplicating a PDB to an Existing CDB
Duplicating a PDB to an Existing CDB
81 0
|
Python
Python生物信息学②从PDB文件中提取蛋白序列
Python生物信息学②从PDB文件中提取蛋白序列
486 0
Python生物信息学②从PDB文件中提取蛋白序列

热门文章

最新文章