SOLVED

ORA-15235: Diskgroup Mount Mode Conflicts With Existing Mount

Asked by OracleDba14 viewsoracle
1
2
3
4
5
6
7
ORA-15235: Diskgroup Mount Mode Conflicts With Existing Mount

PROBLEM:

While mounting a diskgroup in restrict mode, got this error:

This is because, the diskgroup is dismounted in local node, but it is in mount stage is remote nodes.
#oracle#error

Solutions(1)

Accepted Solution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SQL> select inst_id,name,state from gv$asm_diskgroup where name='DATA';

INST_ID NAME STATE

---------- ------------------------------ -----------

1 DATA DISMOUNTED

2 DATA MOUNTED

So to mount an asm diskgroup in restrict mode, Make sure the diskgroup is dismounted on all remote nodes.

NODE 2 :

alter diskgroup DATA dismount;

Now connect to NODE 1  and run the restrict command.

SQL> alter diskgroup DATA mount restricted;

Diskgroup altered.
OracleDba

Post Your Solution