欢迎光临
我们一直在努力

ORA-15244: new compatibility setting less than current [string] ORACLE 报错 故障修复 远程处理

文档解释

ORA-15244: new compatibility setting less than current [string]

Cause: The compatibility setting was invalid. The compatibility setting can only be advanced.

Action: Check the version number.

ORA-15244 用于指出当在更新RDBMS兼容性设置时,可能就某个版本低于当前版本。下面是错误消息:

ORA-15244: new compatibility setting less than current string

当您尝试设置当前兼容性为低于当前值时,数据库将报错ORA-15244。当不小心把兼容性由高版本降低到低版本时,也会发生这种情况。

为了避免ORA-15244错误,您必须保证您尝试将兼容性设置为不低于当前值,以及当你执行相应的alter命令时,要记住正确的参数值。

您可以使用以下步骤来解决该问题:

(1)查看当前兼容性设置:

SELECT * FROM V$OPTION;

(2)查看支持的兼容性设置:

show parameter compatible

(3)根据上面显示的参数值来调节兼容性设置:

ALTER SYSTEM SET COMPATIBLE =’xxx.x.x.x.x’ SCOPE = SPFILE;

(4)重新启动数据库:

shutdown immediate;

startup;

赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。