ORA-65114

ORA-65114

1 错误信息

ora-65114:space usage in container is too high
]# oerr ora 65114
Cause:Space usage in the current container exceeded the value of MAX_PDB_STORAGE for the container.
Action:Specify a higher value for MAX_PDB_STORAGE using the ALTER PLUGGABLE DATABASE statement.

2 原因

pluggable database, 默认只允许使用32G+约33G 的存储空间,包括系统表空间。因此安装好一个新的pluggable database后, 要取消此限制。生产系统上很少有低于 32G 数据的。

3 解决方法

以管理员身份登录数据库。

alter session set container=&pdb_name; -- 这里的pdb_name 指的是出现ORA-65114错误信息的pdb。
alter pluggable database storage unlimited;

Author: halberd.lee

Created: 2020-07-13 Mon 17:35

Validate

原文地址:https://www.cnblogs.com/halberd-lee/p/13128722.html