alter pluggable database pdb1 openread only;CREATE PLUGGABLE DATABASE cuugpdb2 FROM cuugpdb1
FILE_NAME_CONVERT =('/u02/app/oracle/oradata/new/CUUGPDB1/', '/u02/app/oracle/oradata/new/PDB2/');
3、使用non-cdb创建pdb
1、把non-CDB启动到read only状态。
2、连接到non-CDB,运行DBMS_PDB.DESCRIBE产生XML文件,如下命令产生XML文件:
BEGIN
DBMS_PDB.DESCRIBE
( pdb_descr_file =>'/u02/metadata/ncdb.xml');
END;
执行成功以后,就可以使用XML来插入到数据库了。
4、关闭non-cdb
5、Plug in the non-CDB:
SQL> CREATE PLUGGABLE DATABASE ncdb USING '/u02/metadata/ncdb.xml'
nocopy
tempfile reuse
6、这时候不能打开数据库(pdb) 可以用alter session的方式先进入到pdb,运行 ORACLE_HOME/rdbms/admin/noncdb_to_pdb.sql 脚本. 这个脚本必须在第一次打开前运行。
7、Open the new PDB in read/write mode.
8、Backup pdbSQL> WHENEVER SQLERROR CONTINUE;
4、拔出一个pdb,pdb要处于mout状态
ALTER PLUGGABLE DATABASE cuugpdb1 UNPLUG INTO '/u02/metadata/pdb1.xml';5、Plugging In an Unplugged PDB
5.1、检查兼容性
SET SERVEROUTPUT ON
DECLAREcompatible CONSTANT VARCHAR2(3) := CASE DBMS_PDB.CHECK_PLUG_COMPATIBILITY(pdb_descr_file =>'/u02/metadata/pdb1.xml',pdb_name =>'CUUGPDB1')WHEN TRUE THEN 'YES'ELSE 'NO'
END;
BEGINDBMS_OUTPUT.PUT_LINE(compatible);
END;可以设置两个数据库如下参数不一样,也会导致不兼容:
alter system set parallel_max_servers =10;5.2、查看是否兼容:
SQL>select MESSAGE from PDB_PLUG_IN_VIOLATIONS;5.3、插入一个pdb使用nocopy和clone
SQL>CREATE PLUGGABLE DATABASE cuugpdb1 AS cloneUSING '/u02/metadata/pdb1.xml'nocopySTORAGE (MAXSIZE 2G MAX_SHARED_TEMP_SIZE 100M)TEMPFILE REUSE;5.4、插入一个pdb使用copy和clone,这样子可以复制多份的pdb:
CREATE PLUGGABLE DATABASE cuugpdb3 AS clone USING '/u02/metadata/pdb1.xml'copyFILE_NAME_CONVERT =('/u02/app/oracle/oradata/cuugnew/PDB1/', '/u02/app/oracle/oradata/CUUGCDB/PDB2/')STORAGE (MAXSIZE 2G MAX_SHARED_TEMP_SIZE 100M)TEMPFILE REUSE;
前言
今天,通过一个有趣的案例,从反编译的角度看一下C语言中函数参数是如何传递的。
创建main.c文件,将下面实验代码拷贝到main.c文件中。
# main.c
#include <stdio.h>int test(int a, int b, int c, int d, int e, int f, int g, …
ABoVE: Modeled Top Cover by Plant Functional Type over Alaska and Yukon, 1985-2020
1985-2020 年阿拉斯加和育空地区按植物功能类型划分的模型表层覆盖率
简介
文件修订日期:2022-05-31
数据集版本: 1.1
本数据集包含阿拉斯加和育空地区北极和北方地区按…
The Linux driver implementer’s API guide — The Linux Kernel documentation 一、igb_uid驱动
参考博客:https://zhuanlan.zhihu.com/p/543217445 UIO(Userspace I/O)是运行在用户空间的I/O技术
代码位置:dpdk----/kernel/linux/igb_uio目录
igb_uio 是 dpdk 内部实…
现象
Error running App
Command line is too long. In order to reduce its length classpath file can be used.
Would you like to enable classpath file mode for all run configurations of your project?解决办法
办法一
.idea\workspace.xml ——> <compone…