Databases Reference
In-Depth Information
push @GDS, $gd;
push @DTL, "$gd".":\tSize "."$sz".":\tOffset ".$offset."\n";
}
print "Total grid disks: $tgd\n";
%seen = ();
@UNIQCELLS= grep { ! $seen{$_} ++ } @CELLS;
foreach (@UNIQCELLS) {
print "$_ has $cell{$_} grid disks\n";
}
%seen = ();
@UNIQGDS= grep { ! $seen{$_} ++ } @GDS;
foreach (@UNIQGDS) {
print "$_ is built on $cell{$_} grid disks\n";
}
%seen = ();
@UNIQDTL= grep { ! $seen{$_} ++ } @DTL;
foreach (@UNIQDTL) {
print "Distinct size and offset for : $_";
}
[oracle@cm01dbm01 source]$ ./griddisks.pl
Total grid disks: 174
cm01cel01: has 58 grid disks
cm01cel02: has 58 grid disks
cm01cel03: has 58 grid disks
DATA is built on 36 grid disks
DBFS is built on 30 grid disks
RECO is built on 36 grid disks
SDATA is built on 36 grid disks
SRECO is built on 36 grid disks
Distinct size and offsets for : DATA: Size 284G: Offset 32M
Distinct size and offsets for : DBFS: Size 29.125G: Offset 528.734375G
Distinct size and offsets for : RECO: Size 67G: Offset 425.046875G
Distinct size and offsets for : SDATA: Size 141G: Offset 284.046875G
Distinct size and offsets for : SRECO: Size 36.6875G: Offset 492.046875G
[oracle@cm01dbm01 source]$
Start Oracle ClusterWare Resources on the Compute Nodes
With your grid disks rebuilt, it's time to get your Oracle cluster operational. Since your Oracle Cluster Registry will not
be available because you've dropped your ASM disk group that stored it, you will need to start CRS in exclusive mode
on one compute node and then manually start an ASM instance in order to recreate your DBFS_DG ASM disk group. We
recommend first disabling the automatic restart of Oracle CRS by issuing the following command:
[root@cm01dbm01 ~]# /u01/app/11.2.0.3/grid/bin/crsctl disable crs
CRS-4621: Oracle High Availability Services autostart is disabled.
[root@cm01dbm01 ~]#
if you elect not to disable oracle CrS from automatically starting, you can use the crsctl stop res
ora.crsd -init command to stop CrS and prevent it from restarting.
Note
 
 
Search WWH ::




Custom Search