RDBMS 19.25
参考文档:
Oracle Database 12c (12.1 and 12.2) How does one modify the database resource parameter AUTO_START
How to Disable Auto Start of ASM From Cluster Resource (Doc ID 2016160.1)
实际操作:
[root@node19c01 ~]# crsctl status resource ora.test.db -p | grep AUTO_START
AUTO_START=restore
[root@node19c01 ~]#
[root@node19c01 ~]#
[root@node19c01 ~]# crsctl modify resource ora.test.db -attr AUTO_START=restore -unsupported
[root@node19c01 ~]# crsctl status resource ora.test.db -p | grep AUTO_START
AUTO_START=restore
[root@node19c01 ~]#
[root@node19c01 ~]# crsctl status resource ora.test.db -p | grep ENABLE
ENABLED=1
[root@node19c01 ~]#
END