Experience: is what you get soon after you need it.
GIAC Cloud Penetration Tester (GCPN)
GIAC Cloud Security Automation (GCSA)
GIAC Security Essentials (GSEC)
Certified Kubernetes Administrator (CKA)
Cloud Certified Security Professional (ISC2)
CyberSecurity Certified Professional (ISC2)
AWS Certified Solutions Architect Associate
Azure Certified Architect Expert
Azure Certified Architect
Azure Certified Administrator
Oracle Cloud Infrastructure 2018 Certified Architect Associate.
Oracle Cloud Infrastructure Classic 2018 Certified Architect Associate.
Oracle Database Cloud Administrator Certified Professional.
Oracle Database Cloud Service Operations Certified Associate.
Search This Blog
Tuesday, February 21, 2012
drop bad disk from the ASM
2>If you have enough space on other disks to hold data of this effected disk,drop that disk ,seems there is some OS level corruption at this disk level ,so it is not able to read that block.
sql> alter diskgroup PROD_DATA_01 drop disk PROD_DATA_01_0045 rebalance power 5;
Wait for rebalance to complete .
from ASM sqlplus till below query returns "no rows selected"
sql> select * from v$asm_operation ;
If you does not have enough space then add a new disk to this diskgroup and the drop this disk ,
Remember ,both separate operation will cause rebalance operation to kick-off,so you have to allow both of them complete.
3> Then start the database on mount stage,
sql> startup mount;
Then check any datafile needs recovery or not,
select * from v$recover_file;
4> If required recovery then ,do recovery of those specific datafiles.
5> Then open the database .
Note:: If after dropping you face any issue related to spfile ,then please recreate the spfile (As it is in same effected diskgroup).
Then refer to below document ,
Recreating the Spfile for RAC Instances Where the Spfile is Stored in ASM (Doc ID 554120.1)
No comments:
Post a Comment