Hi,
on
Oracle Database 12c Release 1 (12.1.0.1.0)
Oracle Database 12c Release 1 Grid Infrastructure (12.1.0.1.0) for Linux x86-64
When starting the nodes,ASM is in nomount status:
[oracle@rac1 ~]$ sqlplus / as sysasm
SQL*Plus: Release 12.1.0.1.0 Production on Sat Mar 3 22:22:30 2018
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Real Application Clusters and Automatic Storage Management options
SQL> select status from v$instance;
STATUS
------------
STARTED
No other database is running. It can't because +DATA is not mounted.
Then I want to stop ASM and start it up:
I verify if any other db connected:
SQL> select DB_NAME from V$ASM_CLIENT;
DB_NAME
--------
+ASM
Then not.
But when stopping ASM:
SQL> shutdown immediate;
I receive :
ORA-15097: cannot SHUTDOWN ASM instance with connected client (process 3236)
Any idea?
Thank you.