ASM add disk issue [message #526325] |
Mon, 10 October 2011 10:06 |
dba_7722
Messages: 197 Registered: August 2010 Location: Delhi
|
Senior Member |
|
|
Hi Expert.
I have added disk to disk group FRA successfully but total size for disk is not increased. Also when checked with v$asm_disk, disk is attached with wrong disk number i.e. 0. Please suggest.
SQL> ALTER DISKGROUP FRA ADD DISK 'ORCL:T1_ASM11';
Diskgroup altered.
SQL> select * from v$asm_operation;
no rows selected
SQL> select group_number,name,total_mb/1024,free_mb/1024 from v$asm_diskgroup;
GROUP_NUMBER NAME TOTAL_MB/1024 FREE_MB/1024
------------ ------------------------------ ------------- ------------
1 DATA 1800 719.444336
2 FRA 200 14.4238281
SQL> select GROUP_NUMBER,name from v$asm_disk;
GROUP_NUMBER NAME
------------ ------------------------------
0
2 T1_ASM01
1 T1_ASM02
1 T1_ASM03
1 T1_ASM04
1 T1_ASM05
1 T1_ASM06
1 T1_ASM07
1 T1_ASM08
1 T1_ASM09
1 T1_ASM10
11 rows selected.
SQL>
|
|
|
|
|
|
|
Re: ASM add disk issue [message #526335 is a reply to message #526325] |
Mon, 10 October 2011 10:29 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
Quote:I have added disk to disk group FRA successfully No you haven't. Your new disc is not in any disk group at all. That is why its group_number is zero.
|
|
|
|
|
|
|
|
Re: ASM add disk issue [message #526355 is a reply to message #526354] |
Mon, 10 October 2011 12:49 |
dba_7722
Messages: 197 Registered: August 2010 Location: Delhi
|
Senior Member |
|
|
Interesting points in alert log file for ASM:
SQL> ALTER DISKGROUP FRA ADD DISK 'ORCL:T1_ASM11'
Mon Oct 10 13:36:15 2011
NOTE: failed to discover disks from gpnp profile asm diskstring
Errors in file /p01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_rbal_31856.trc:
ORA-29786: SIHA attribute GET failed with error [Attribute 'ASM_DISKSTRING' sts[200] lsts[0]]
NOTE: Assigning number (2,1) to disk (ORCL:T1_ASM11)
NOTE: requesting all-instance membership refresh for group=2
ORA-15186: ASMLIB error function = [asm_open(global)], error = [1], mesg = [Operation not permitted]
ORA-15025: could not open disk "ORCL:T1_ASM11"
NOTE: Disk in mode 0x8 marked for de-assignment
NOTE: requesting all-instance disk validation for group=2
NOTE: skipping rediscovery for group 2/0xff5a079 (FRA) on local instance.
NOTE: requesting all-instance disk validation for group=2
NOTE: skipping rediscovery for group 2/0xff5a079 (FRA) on local instance.
NOTE: initiating PST update: grp = 2
Mon Oct 10 13:36:18 2011
GMON updating group 2 at 25 for pid 21, osid 6365
NOTE: PST update grp = 2 completed successfully
NOTE: membership refresh pending for group 2/0xff5a079 (FRA)
GMON querying group 2 at 26 for pid 13, osid 31856
GMON querying group 2 at 27 for pid 13, osid 31856
SUCCESS: refreshed membership for 2/0xff5a079 (FRA)
SUCCESS: ALTER DISKGROUP FRA ADD DISK 'ORCL:T1_ASM11'
NOTE: starting rebalance of group 2/0xff5a079 (FRA) at power 1
Starting background process ARB0
Mon Oct 10 13:36:20 2011
ARB0 started with pid=22, OS id=13921
NOTE: assigning ARB0 to group 2/0xff5a079 (FRA) with 1 parallel I/O
Mon Oct 10 13:36:36 2011
NOTE: failed to discover disks from gpnp profile asm diskstring
Errors in file /p01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_rbal_31856.trc:
ORA-29786: SIHA attribute GET failed with error [Attribute 'ASM_DISKSTRING' sts[200] lsts[0]]
NOTE: Attempting voting file refresh on diskgroup FRA
ORA-15186: ASMLIB error function = [asm_open(global)], error = [1], mesg = [Operation not permitted]
|
|
|
|
|
|
|
Re: ASM add disk issue [message #526444 is a reply to message #526428] |
Tue, 11 October 2011 02:30 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
How did you add the new disk to the discovery string? Did you use
alter system set asm_diskstring='something different';
or did you use
oracleasm createdisk....
I hope you didn't try to edit your profile.xml file, that really would be disastrous.
Can you run this query,
select path,name,group_number,header_status from v$asm_disk;
to see if ASM thinks the disk is usable.
|
|
|
|
Re: ASM add disk issue [message #526637 is a reply to message #526636] |
Wed, 12 October 2011 02:38 |
dba_7722
Messages: 197 Registered: August 2010 Location: Delhi
|
Senior Member |
|
|
Since disk group is for FRA, so also need to change in DB_RECOVERY_FILE_DEST_SIZE as suggested from you.
Thanks for all support.
|
|
|