0
点赞
收藏
分享

微信扫一扫

Oracle查询与修改数据库版本兼容性

西街小学的王 2022-02-28 阅读 94

查询数据库版本兼容性:

show parameter COMPATIBLE
或:
col NAME for a20
col VALUE for a15
col DESCRIPTION for a80
select name,value,description from v$parameter where name = 'compatible';

修改数据库版本兼容性:

alter system set compatible = "12.1.0" sope = spfile;
举报

相关推荐

0 条评论