ORA-15493: target ADVM compatibility (12.1.0.0.0) exceeds ASM compatibility (11.2.0.2.0)
SQL> alter diskgroup DG_TEST set attribute 'compatible.advm'='12.1';
alter diskgroup DG_TEST set attribute 'compatible.advm'='12.1'
*
ERROR at line 1:
ORA-15032: not all alterations performed
ORA-15242: could not set attribute compatible.advm
ORA-15493: target ADVM compatibility (12.1.0.0.0) exceeds ASM compatibility
(11.2.0.2.0)
Solution:
Increase the compatible.asm minimum to a value you want compatible.advm to be.
SQL> select NAME,VALUE from v$asm_attribute where name like '%com%' and GROUP_NUMBER=5;
NAME VALUE
---------------------------------------- ----------------------------------------
compatible.asm 11.2.0.2.0
compatible.rdbms 10.1.0.0.0
compatible.advm 11.2.0.2.0
SQL> alter diskgroup DG_TEST set attribute 'compatible.asm'='12.1';
Diskgroup altered.
SQL> alter diskgroup DG_TEST set attribute 'compatible.advm'='12.1';
Diskgroup altered.
SQL> select NAME,VALUE from v$asm_attribute where name like '%com%' and GROUP_NUMBER=5;
NAME VALUE
---------------------------------------- ----------------------------------------
compatible.asm 12.1.0.0.0
compatible.rdbms 10.1.0.0.0
compatible.advm 12.1
Comments
Post a Comment