How to set the Undo_tablespace in PDB in Physical Standby RAC Database. (Doc ID 2726173.1)

简介: How to set the Undo_tablespace in PDB in Physical Standby RAC Database. (Doc ID 2726173.1)

1. Primary - Make Change in Primary Database in PDB in each Instances:

 

For e.g

Instance 1 -> alter system set undo_tablespace=PDB1_UNDO_KDRACBKP1 container=current sid='KDRACBKP1' scope=both;

Instance 2 -> alter system set undo_tablespace=PDB1_UNDO_KDRACBKP2 container=current sid='KDRACBKP2' scope=both;

 

2. Standby - Restart the Standby database to apply the changes.

 

3. To Check the assigned Undo Tablespace :

select inst_id,con_id,name,value from gv$parameter where name='undo_tablespace' order by 1



How to set the Undo_tablespace in PDB in Physical Standby RAC Database. (Doc ID 2726173.1)
Undo Modes in 12.2 Multitenant Databases - Local and Shared Modes (Doc ID 2169828.1)
How to Switch/Recreate Undo Tablespace at PDB Level (Doc ID 2560841.1)


相关文章
|
关系型数据库 数据库 数据安全/隐私保护
Environment variable ORACLE_UNQNAME not defined. Please set ORACLE_UNQNAME to database unique name
解决方法:      在启动的时候先设置一下oracle_unqname                     set oracle_unqname=$ORACLE_SID 如果还是失败,在环境变量中添加:      vi ~/.
1001 0
|
Windows SQL Perl
Please pay more attention to the character set of your database
Recently, the vendors tried to install their systems in our office. Only had the vendors experience on Chinese platform.
595 0
|
3天前
|
存储 JavaScript 索引
js开发:请解释什么是ES6的Map和Set,以及它们与普通对象和数组的区别。
ES6引入了Map和Set数据结构。Map的键可以是任意类型且有序,与对象的字符串或符号键不同;Set存储唯一值,无重复。两者皆可迭代,支持for...of循环。Map有get、set、has、delete等方法,Set有add、delete、has方法。示例展示了Map和Set的基本操作。
17 3
|
1月前
|
存储 自然语言处理 C++
map和set的简单介绍
map和set的简单介绍
20 1
|
1月前
|
存储 安全 Java
java集合框架及其特点(List、Set、Queue、Map)
java集合框架及其特点(List、Set、Queue、Map)
|
3月前
|
JavaScript 前端开发 定位技术
JavaScript 中如何代理 Set(集合) 和 Map(映射)
JavaScript 中如何代理 Set(集合) 和 Map(映射)
50 0
|
3月前
|
存储 安全 Java
Map和Set(JAVA)
Map和Set(JAVA)
50 1
|
3月前
|
编译器 C++ 容器
【C++学习手札】基于红黑树封装模拟实现map和set
【C++学习手札】基于红黑树封装模拟实现map和set