linux 5.3U 2.6.18-128.el5
因为要修复一个bug做测试,在一个节点上修改隐含参数,然后重启!在测试的过程中遇到
sys@rac1>alter system set "_gc_read_mostly_locking"=false scope=spfile sid='rac1';
sys@rac1>shutdown immedate
ORACLE instance shut down.
Total System Global Area 1653518336 bytes
Variable Size 1275070456 bytes
Database Buffers 369098752 bytes
Redo Buffers 7135232 bytes
ORA-01105: mount is incompatible with mounts by other instances ORA-01606: parameter not identical to that of another mounted instance NOTE: Loaded library: /opt/oracle/extapi/64/asm/orcl/1/libasm.so
NOTE: Loaded library: System
SUCCESS: diskgroup DATA2 was mounted
NOTE: dependency between database rac and diskgroup resource ora.DATA2.dg is established
ORA-1105 signalled during: ALTER DATABASE MOUNT...
Starting ORACLE instance (normal)
因为节点1修改之后的值为false 而节点2 的值为 ture,导致上面的错误。
sys@rac2>alter system set "_gc_read_mostly_locking"=false scope=spfile sid='*';
拓展一下,如果修改隐含参数的时候sid指定为*,重启一个节点 是ok的!
sys@rac1>alter system set "_gc_read_mostly_locking"=false scope=spfile sid='*';
sys@rac1>shutdown immediate
ORACLE instance shut down.
Total System Global Area 1653518336 bytes
Variable Size 1275070456 bytes
Database Buffers 369098752 bytes
Redo Buffers 7135232 bytes
和下面这篇文章不同的是我遇到的隐含参数不一样!不过作为拓展了,多了解一些案例!
http://space.itpub.net/7796861/viewspace-675951
http://space.itpub.net/4227/viewspace-723576
ps 今天做了一次变更,版本是 11.2.0.3 和自己做的测试有出入!希望各位读者 自己实践一下!