ORA-43878: LOB feature unsupported below compatible setting 11.2.0 ORACLE 报错 故障修复 远程处理

文档解释

ORA-43878: LOB feature unsupported below compatible setting 11.2.0

Cause: An 11.2 LOB feature was specified when the database was operating at a compatible setting lower than “11.2.0”.

Action: Upgrade the database compatible setting to “11.2.0” or higher to enable the desired new features.

ORA-43878 是由于Oracle数据库的兼容性设置过低导致,支持LOB(大型对象)特性需要兼容设置高于 11.2.0 版本:

一旦发生 ORA-43878,Oracle 会明确提示当前兼容性设置版本大于 11.2.0。正确的处理方法是,修改当前关联的Oracle 数据库的兼容性设置,提升到 11.2.0 以上或者更新的版本。

步骤:

1. 打开SQL*Plus 连接指定的Oracle数据库;

2. 执行一个 ALTER DATABASE 语句,来改变兼容性设置到 11.2.0 版本:

SQL> ALTER DATABASE COMPATIBILITY LEVEL 11.2.0;

3. 重新启动数据库

4. 重试操作,确认 ORA-43878 错误被修复。


数据运维技术 » ORA-43878: LOB feature unsupported below compatible setting 11.2.0 ORACLE 报错 故障修复 远程处理