{"id":495,"date":"2019-06-24T14:03:05","date_gmt":"2019-06-24T17:03:05","guid":{"rendered":"http:\/\/www.fernandosimon.com\/blog\/?p=495"},"modified":"2020-07-19T19:19:22","modified_gmt":"2020-07-19T22:19:22","slug":"increase-size-for-exadata-grid-disks","status":"publish","type":"post","link":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/","title":{"rendered":"Increase size for Exadata Grid Disks"},"content":{"rendered":"<p style=\"text-align: justify;\">A quick article about a maintenance task for Oracle Exadata when you are using OVM and you divided your storage cell disks for every VM. Here I will show you how to extend your Grid Disks to add more space in your ASM diskgroup.<\/p>\n<p style=\"text-align: justify;\">The first thing is being aware of your environment, before everything you need to know the points below because, they are important to calculate the new space, and to avoid do something wrong:<\/p>\n<ul style=\"text-align: justify;\">\n<li>Number of cells in your appliance.<\/li>\n<li>Number of disks for each cell.<\/li>\n<li>Mirroring for your ASM.<\/li>\n<li>The VM that you want to add the space.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">The \u201cnormal\u201d Exadata storage cell has 12 disks, the Extreme Flash version uses 8 disks per storage. If you have doubt about how many disks you have per storage cell, you can connect in each one and check the number of celldisks you have. And before continuing, be aware of Exadata disk division:<\/p>\n<p><a href=\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-176 size-medium\" src=\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa-300x91.png\" alt=\"\" width=\"300\" height=\"91\" srcset=\"https:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa-300x91.png 300w, https:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa.png 653w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p style=\"text-align: justify;\">To do this change we execute three major steps: ASM, Exadata Storage, and ASM again.<\/p>\n<p style=\"text-align: justify;\"><!--more More...--><\/p>\n<h2>For ASM<\/h2>\n<p>Inside ASM we can use this query to collect some information about the diskgroups:<\/p>\n<pre class=\"EnlighterJSRAW \" data-enlighter-language=\"no-highlight\">SQL&gt; col name format a12 head 'Disk Group';\r\nSQL&gt; col total_mb format 999999999 head 'Total GB|Raw';\r\nSQL&gt; col free_mb format 999999999 head 'Free GB|Raw';\r\nSQL&gt; col avail_mb format 999999999 head 'Total GB|Usable';\r\nSQL&gt; col usable_mb format 999999999 head 'Free GB|Usable';\r\nSQL&gt; col usable_mb format 999999999 head 'Free GB|Usable';\r\nSQL&gt; col cdisks format 99999 head 'Cell|Disksl';\r\nSQL&gt;\r\nSQL&gt; select a.name,a.total_mb,a.free_mb,a.type,\r\n  2  decode(a.type,'NORMAL',a.total_mb\/2\/1024,'HIGH',a.total_mb\/3\/1024) avail_mb,\r\n  3  decode(a.type,'NORMAL',a.free_mb\/2\/1024,'HIGH',a.free_mb\/3\/1024) usable_mb,\r\n  4  count(b.path) cdisks\r\n  5  from v$asm_diskgroup a, v$asm_disk b\r\n  6  where a.group_number=b.group_number\r\n  7  group by a.name,a.total_mb,a.free_mb,a.type,\r\n  8  decode(a.type,'NORMAL',a.total_mb\/2\/1024,'HIGH',a.total_mb\/3\/1024) ,\r\n  9  decode(a.type,'NORMAL',a.free_mb\/2\/1024,'HIGH',a.free_mb\/3\/1024)\r\n 10  order by 2,1\r\n 11  \/\r\n\r\n               Total GB    Free GB          Total GB    Free GB   Cell\r\nDisk Group          Raw        Raw TYPE       Usable     Usable Disksl\r\n------------ ---------- ---------- ------ ---------- ---------- ------\r\nRECOC3          4239360    2465540 NORMAL       2070       1204     60\r\nDATAC3         15790080    2253048 NORMAL       7710       1100     60\r\n\r\nSQL&gt;\r\nSQL&gt; select dg.name, d.failgroup, d.state, d.header_status, d.mount_status, d.mode_status, count(1) num_disks\r\n  2  from v$asm_disk d, v$asm_diskgroup dg\r\n  3  where d.group_number = dg.group_number\r\n  4  and dg.name IN ('DATAC3')\r\n  5  group by dg.name, d.failgroup, d.state, d.header_status, d.mount_status, d.mode_status\r\n  6  order by 1,2,3;\r\n\r\nNAME   FAILGROUP                      STATE    HEADER_STATU MOUNT_S MODE_ST  NUM_DISKS\r\n------ ------------------------------ -------- ------------ ------- ------- ----------\r\nDATAC3 EXACELADM01                    NORMAL   MEMBER       CACHED  ONLINE          12\r\nDATAC3 EXACELADM02                    NORMAL   MEMBER       CACHED  ONLINE          12\r\nDATAC3 EXACELADM03                    NORMAL   MEMBER       CACHED  ONLINE          12\r\nDATAC3 EXACELADM04                    NORMAL   MEMBER       CACHED  ONLINE          12\r\nDATAC3 EXACELADM05                    NORMAL   MEMBER       CACHED  ONLINE          12\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">With that, I have three important information: <strong>number the disks (60)<\/strong>, <strong>redundancy type (NORMAL)<\/strong>, <strong>total actual size (RAW value &#8211; 15790080)<\/strong>. To discover the size for each disk in ASM (here I do manually and not check in v$asm_disk just to show you the steps and to be more didact) you can divide the raw space\/#disks:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; SELECT (15790080\/1024)\/60 as gbDISK FROM dual;\r\n\r\n    GBDISK\r\n----------\r\n       257\r\n\r\nSQL&gt;\r\n<\/pre>\n<p style=\"text-align: justify;\">So, each disk has 257GB of space size (in raw). Since the actual free space is 1100GB (1.07TB) and we want to add more 2TB we need to increase the value for each disk.<\/p>\n<p style=\"text-align: justify;\">The formula is simple: <strong>NewValue(inGB)*#OfDisksPerCell*#NumberofCells<\/strong>. Here I choose 330GB per disk, so, the new size for diskgroup will be:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; SELECT (330*12*5) AS newsizeGB FROM dual;\r\n\r\n NEWSIZEGB\r\n----------\r\n     19800\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">But this value is not correct because does not consider the mirror type, so, we need to divide this value. If it NORMAL, divide by 2, if HIGH, divide by 3. To compare, the old and new expected value:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; SELECT (257*12*5)\/2 as actualsizeGBUsable, (330*12*5)\/2 AS newsizeGBUSable FROM dual;\r\n\r\nACTUALSIZEGBUSABLE NEWSIZEGBUSABLE\r\n------------------ ---------------\r\n              7710            9900\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">So, the new total space for diskgroup will be around 9.6 TB (9900 GB). And we will add (as free space) around 2.1 TB. Probably you need to execute these formulas more than one time to find the desired size per disk.<\/p>\n<p style=\"text-align: justify;\">I start to calculate by disk (and after discovering the final diskgroup size) instead of starting with diskgroup size (and dividing to discover the disk size) because doing this way, the size for disk will be always correct and align with storage cell grid disk. Remember that grid disks are aligned in 16MB and, if you start to choose one arbitrary value to the max size for the ASM diskgroup, you can reach a value per grid disk that is not 16MB aligned. As an example, if I start choosing 20TB for diskgroup, the size per disk will be (20*1024)\/60 = 341.33GB and this is not aligned with 16MB.<\/p>\n<p style=\"text-align: justify;\">For 16 Mb explanation, you can check in the <a href=\"https:\/\/docs.oracle.com\/en\/engineered-systems\/exadata-database-machine\/sagug\/exadata-administering-asm.html#GUID-42DA2512-667D-443C-93C5-6E5110DFAE21\" target=\"_blank\" rel=\"noopener noreferrer\">Exadata docs<\/a>:&nbsp;<\/p>\n<p><em>Find the closest 16 MB boundary for the new grid disk size. If you do not perform this check, then the cell will round down the grid disk size to the nearest 16 MB boundary automatically, and you could end up with a mismatch in size between the Oracle ASM disks and the grid disks.<\/em><\/p>\n<h2>For Storage Cell<\/h2>\n<p style=\"text-align: justify;\">In the Exadata side, first, check some info about the actual state for grid disks. Here I connect in one cell (if you want you can use dcli to call every\/all cells) and check some info for the grid disk:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">[root@exaceladm01 ~]# cellcli\r\nCellCLI: Release 18.1.6.0.0 - Production on Fri Jun 21 16:57:49 CEST 2019\r\n\r\nCopyright (c) 2007, 2016, Oracle and\/or its affiliates. All rights reserved.\r\n\r\nCellCLI&gt; list celldisk\r\n         CD_00_exaceladm01       normal\r\n         CD_01_exaceladm01       normal\r\n         CD_02_exaceladm01       normal\r\n         CD_03_exaceladm01       normal\r\n         CD_04_exaceladm01       normal\r\n         CD_05_exaceladm01       normal\r\n         CD_06_exaceladm01       normal\r\n         CD_07_exaceladm01       normal\r\n         CD_08_exaceladm01       normal\r\n         CD_09_exaceladm01       normal\r\n         CD_10_exaceladm01       normal\r\n         CD_11_exaceladm01       normal\r\n         FD_00_exaceladm01       normal\r\n         FD_01_exaceladm01       normal\r\n         FD_02_exaceladm01       normal\r\n         FD_03_exaceladm01       normal\r\n\r\nCellCLI&gt; list celldisk CD_02_exaceladm01 detail\r\n         name:                   CD_02_exaceladm01\r\n         comment:\r\n         creationTime:           2016-11-29T10:23:35+01:00\r\n         deviceName:             \/dev\/sdc\r\n         devicePartition:        \/dev\/sdc\r\n         diskType:               HardDisk\r\n         errorCount:             0\r\n         freeSpace:              2.6688079833984375T\r\n         id:                     d57b31bb-6043-4cea-b992-ef8075f42e77\r\n         physicalDisk:           PUT81V\r\n         size:                   7.152252197265625T\r\n         status:                 normal\r\n\r\nCellCLI&gt;\r\n\r\nCellCLI&gt; list griddisk where name like 'DATAC3.*';\r\n         DATAC3_CD_00_exaceladm01        active\r\n         DATAC3_CD_01_exaceladm01        active\r\n         DATAC3_CD_02_exaceladm01        active\r\n         DATAC3_CD_03_exaceladm01        active\r\n         DATAC3_CD_04_exaceladm01        active\r\n         DATAC3_CD_05_exaceladm01        active\r\n         DATAC3_CD_06_exaceladm01        active\r\n         DATAC3_CD_07_exaceladm01        active\r\n         DATAC3_CD_08_exaceladm01        active\r\n         DATAC3_CD_09_exaceladm01        active\r\n         DATAC3_CD_10_exaceladm01        active\r\n         DATAC3_CD_11_exaceladm01        active\r\n\r\nCellCLI&gt;\r\nCellCLI&gt; list griddisk where name = 'DATAC3_CD_04_exaceladm01' detail;\r\n         name:                   DATAC3_CD_04_exaceladm01\r\n         asmDiskGroupName:       DATAC3\r\n         asmDiskName:            DATAC3_CD_04_EXACELADM01\r\n         asmFailGroupName:       EXACELADM01\r\n         availableTo:\r\n         cachedBy:               FD_00_exaceladm01\r\n         cachingPolicy:          default\r\n         cellDisk:               CD_04_exaceladm01\r\n         comment:                \"Cluster exa-cl3 diskgroup DATAC3\"\r\n         creationTime:           2017-01-20T17:23:21+01:00\r\n         diskType:               HardDisk\r\n         errorCount:             0\r\n         id:                     2cb2aecb-cfa1-4282-b90d-3a08ed079778\r\n         size:                   257G\r\n         status:                 active\r\n\r\nCellCLI&gt;<\/pre>\n<p style=\"text-align: justify;\">Here you can see that I checked:<\/p>\n<ul style=\"text-align: justify;\">\n<li>The celldisks info for this cell.<\/li>\n<li>Detail for one celldisk (look the <em>freeSpace<\/em> attribute to verify if you have free space).<\/li>\n<li>The grid disks for this cell.<\/li>\n<li>Details for the griddisk (look that the size is the same value that I calculated manually).<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">This part was just to check and show you how to verify some info, with time, you don\u2019t need to check this in every maintenance (because you will be familiar with the environment). Be careful that, if you have different grid disk space division per storage cells, you need to check if you have available space in all your storage celldisks.<\/p>\n<p style=\"text-align: justify;\">To expand the grid disks you have two options, enter in each cell and expand manually one by one, or create one script and call by dcli (the option that I choose). So, create one script that executes the <strong>ALTER GRIDDISK<\/strong> command for the new desired size. Just remember to be careful and choose the correct grid disks (here is for VM 03, that means DATAC3):<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">[DOM0 - root@exadbadm01 tmp]$  vi Change_Disk_Size_Of_DATAC3_Cluster_To_330G.sh\r\n[DOM0 - root@exadbadm01 tmp]$\r\n[DOM0 - root@exadbadm01 tmp]$\r\n[DOM0 - root@exadbadm01 tmp]$  cat Change_Disk_Size_Of_DATAC3_Cluster_To_330G.sh\r\ndcli -l root -c exaceladm01 cellcli -e ALTER GRIDDISK DATAC3_CD_00_EXACELADM01 size=330G;\r\ndcli -l root -c exaceladm02 cellcli -e ALTER GRIDDISK DATAC3_CD_00_EXACELADM02 size=330G;\r\n\u2026\r\ndcli -l root -c exaceladm02 cellcli -e ALTER GRIDDISK DATAC3_CD_11_EXACELADM02 size=330G;\r\ndcli -l root -c exaceladm03 cellcli -e ALTER GRIDDISK DATAC3_CD_11_EXACELADM03 size=330G;\r\ndcli -l root -c exaceladm04 cellcli -e ALTER GRIDDISK DATAC3_CD_11_EXACELADM04 size=330G;\r\ndcli -l root -c exaceladm05 cellcli -e ALTER GRIDDISK DATAC3_CD_11_EXACELADM05 size=330G;\r\n[DOM0 - root@exadbadm01 tmp]$\r\n[DOM0 - root@exadbadm01 tmp]$  chmod +x Change_Disk_Size_Of_DATAC3_Cluster_To_330G.sh\r\n[DOM0 - root@exadbadm01 tmp]$\r\n[DOM0 - root@exadbadm01 tmp]$  .\/Change_Disk_Size_Of_DATAC3_Cluster_To_330G.sh\r\nexaceladm01: GridDisk DATAC3_CD_00_exaceladm01 successfully altered\r\nexaceladm02: GridDisk DATAC3_CD_00_exaceladm02 successfully altered\r\nexaceladm03: GridDisk DATAC3_CD_00_exaceladm03 successfully altered\r\n\u2026\r\n\u2026\r\nexaceladm01: GridDisk DATAC3_CD_11_exaceladm01 successfully altered\r\nexaceladm02: GridDisk DATAC3_CD_11_exaceladm02 successfully altered\r\nexaceladm03: GridDisk DATAC3_CD_11_exaceladm03 successfully altered\r\nexaceladm04: GridDisk DATAC3_CD_11_exaceladm04 successfully altered\r\nexaceladm05: GridDisk DATAC3_CD_11_exaceladm05 successfully altered\r\n[DOM0 - root@exadbadm01 tmp]$\r\n[DOM0 - root@exadbadm01 tmp]$<\/pre>\n<p style=\"text-align: justify;\">Above I cropped the output to reduce the size or post, but you can check the raw output <a href=\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2019\/06\/Raw-Output-From-Extend-Exadata-Grid-Disk-Using-Script.txt\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a>. After the change you can check the info for the grid disk:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">[root@exaceladm01 ~]# cellcli\r\nCellCLI: Release 18.1.6.0.0 - Production on Fri Jun 21 17:24:03 CEST 2019\r\n\r\nCopyright (c) 2007, 2016, Oracle and\/or its affiliates. All rights reserved.\r\n\r\nCellCLI&gt; list griddisk where name = 'DATAC3_CD_04_exaceladm01' detail;\r\n         name:                   DATAC3_CD_04_exaceladm01\r\n         asmDiskGroupName:       DATAC3\r\n         asmDiskName:            DATAC3_CD_04_EXACELADM01\r\n         asmFailGroupName:       EXACELADM01\r\n         availableTo:\r\n         cachedBy:               FD_00_exaceladm01\r\n         cachingPolicy:          default\r\n         cellDisk:               CD_04_exaceladm01\r\n         comment:                \"Cluster exa-cl3 diskgroup DATAC3\"\r\n         creationTime:           2017-01-20T17:23:21+01:00\r\n         diskType:               HardDisk\r\n         errorCount:             0\r\n         id:                     2cb2aecb-cfa1-4282-b90d-3a08ed079778\r\n         size:                   330G\r\n         status:                 active\r\n\r\nCellCLI&gt; list celldisk CD_02_exaceladm01 detail\r\n         name:                   CD_02_exaceladm01\r\n         comment:\r\n         creationTime:           2016-11-29T10:23:35+01:00\r\n         deviceName:             \/dev\/sdc\r\n         devicePartition:        \/dev\/sdc\r\n         diskType:               HardDisk\r\n         errorCount:             0\r\n         freeSpace:              2.5975189208984375T\r\n         id:                     d57b31bb-6043-4cea-b992-ef8075f42e77\r\n         physicalDisk:           PUT81V\r\n         size:                   7.152252197265625T\r\n         status:                 normal\r\n\r\nCellCLI&gt; exit\r\nquitting\r\n\r\n[root@exaceladm01 ~]#\r\n<\/pre>\n<h2>For ASM &#8211; Part #2<\/h2>\n<p style=\"text-align: justify;\">After you change the grid disks in the storage side, you can go back to ASM and extend the diskgroup:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; ALTER DISKGROUP DATAC3 RESIZE ALL;\r\n\r\nDiskgroup altered.\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">And you can check that the size was already added (look that values hit what we calculated before):<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; select a.name,a.total_mb,a.free_mb,a.type,\r\n  2  decode(a.type,'NORMAL',a.total_mb\/2\/1024,'HIGH',a.total_mb\/3\/1024) avail_mb,\r\n  3  decode(a.type,'NORMAL',a.free_mb\/2\/1024,'HIGH',a.free_mb\/3\/1024) usable_mb,\r\n  4  count(b.path) cdisks\r\n  5  from v$asm_diskgroup a, v$asm_disk b\r\n  6  where a.group_number=b.group_number\r\n  7  group by a.name,a.total_mb,a.free_mb,a.type,\r\n  8  decode(a.type,'NORMAL',a.total_mb\/2\/1024,'HIGH',a.total_mb\/3\/1024) ,\r\n  9  decode(a.type,'NORMAL',a.free_mb\/2\/1024,'HIGH',a.free_mb\/3\/1024)\r\n 10  order by 2,1\r\n 11  \/\r\n\r\n               Total GB    Free GB          Total GB    Free GB   Cell\r\nDisk Group          Raw        Raw TYPE       Usable     Usable Disksl\r\n------------ ---------- ---------- ------ ---------- ---------- ------\r\nRECOC3          4239360    2465540 NORMAL       2070       1204     60\r\nDATAC3         20275200    6738128 NORMAL       9900       3290     60\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">And you can check the v$asm_operation to check the rebalance progress:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; select operation, EST_MINUTES, EST_RATE, EST_WORK, sofar from v$asm_operation;\r\n\r\nOPERA EST_MINUTES   EST_RATE   EST_WORK      SOFAR\r\n----- ----------- ---------- ---------- ----------\r\nREBAL           0          0          0          0\r\nREBAL           0      46158      18490       5761\r\nREBAL           0          0          0          0\r\nREBAL           0          0          0          0\r\nREBAL           0          0          0          0\r\n\r\nSQL&gt;<\/pre>\n<h2 style=\"text-align: justify;\">Conclusion<\/h2>\n<p style=\"text-align: justify;\">As you can see, the steps to do that are simple and not complex, you just need to take care about some details of your environment: <strong>Number of the disks per cell, number the cells and the VM where you want to add the space is critical to do the correct change.<\/strong> Remember to align with 16MB the size of your grid disk, when you are adding it is not a big deal, but if you want to shrink this can break your ASM diskgroup.<\/p>\n<p style=\"text-align: justify;\">Check that the only change effectively is the size of the grid disk, all the others occur automatically because of the grid disk. ASM diskgroup will increase to the max value that it is available and space is available just after the command.<\/p>\n<p style=\"text-align: justify;\">The steps above are more detailed that you will do in daily maintenance, but help you to understand most of the datils for this kind of change.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Reference:<\/strong><\/p>\n<p>How to Resize Grid Disks in Exadata (Doc ID 2176737.1) &#8211; <a href=\"https:\/\/support.oracle.com\/epmos\/faces\/DocContentDisplay?id=2176737.1\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/support.oracle.com\/epmos\/faces\/DocContentDisplay?id=2176737.1<\/a><\/p>\n<p>Resizing Grid Disks &#8211; <a href=\"https:\/\/docs.oracle.com\/en\/engineered-systems\/exadata-database-machine\/sagug\/exadata-administering-asm.html#GUID-570A0C37-907C-4417-BC93-AC4ABAF7E3AD\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/docs.oracle.com\/en\/engineered-systems\/exadata-database-machine\/sagug\/exadata-administering-asm.html#GUID-570A0C37-907C-4417-BC93-AC4ABAF7E3AD<\/a>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><em><strong>Disclaimer<\/strong><\/em><em>: &#8220;The postings on this site are my own and don&#8217;t necessarily represent my actual employer positions, strategies or opinions. The information here was edited to be useful for general purpose, specific data and identifications were removed to allow reach the generic audience and to be useful for the community. Post protected by copyright.\u201d<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A quick article about a maintenance task for Oracle Exadata when you are using OVM and you divided your storage cell disks for every VM. Here I will show you how to extend your Grid Disks to add more space in your ASM diskgroup. The first thing is being aware of your environment, before everything [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[55,30,29,77,6,5,23,9],"tags":[80,90,88,69,87,65,89],"class_list":["post-495","post","type-post","status-publish","format-standard","hentry","category-asm","category-banco-de-dados","category-database","category-engineeredsystems","category-exadata","category-oracle","category-storage","category-storage-server","tag-asm","tag-cell","tag-diskgroup","tag-exadata","tag-grid-disk","tag-oracle","tag-storate"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Increase size for Exadata Grid Disks - Fernando Simon<\/title>\n<meta name=\"description\" content=\"Check how to increase Exadata Grid Disks and add this space for ASM diskgroup running over VM\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Increase size for Exadata Grid Disks - Fernando Simon\" \/>\n<meta property=\"og:description\" content=\"Check how to increase Exadata Grid Disks and add this space for ASM diskgroup running over VM\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/\" \/>\n<meta property=\"og:site_name\" content=\"Fernando Simon\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-24T17:03:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-19T22:19:22+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa-300x91.png\" \/>\n<meta name=\"author\" content=\"Simon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Simon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/\"},\"author\":{\"name\":\"Simon\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9\"},\"headline\":\"Increase size for Exadata Grid Disks\",\"datePublished\":\"2019-06-24T17:03:05+00:00\",\"dateModified\":\"2020-07-19T22:19:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/\"},\"wordCount\":1114,\"commentCount\":3,\"image\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa-300x91.png\",\"keywords\":[\"ASM\",\"Cell\",\"Diskgroup\",\"Exadata\",\"Grid Disk\",\"Oracle\",\"Storate\"],\"articleSection\":[\"ASM\",\"Banco de Dados\",\"Database\",\"Engineered Systems\",\"Exadata\",\"Oracle\",\"Storage\",\"Storage Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/\",\"url\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/\",\"name\":\"Increase size for Exadata Grid Disks - Fernando Simon\",\"isPartOf\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa-300x91.png\",\"datePublished\":\"2019-06-24T17:03:05+00:00\",\"dateModified\":\"2020-07-19T22:19:22+00:00\",\"author\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9\"},\"description\":\"Check how to increase Exadata Grid Disks and add this space for ASM diskgroup running over VM\",\"breadcrumb\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#primaryimage\",\"url\":\"https:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa.png\",\"contentUrl\":\"https:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa.png\",\"width\":653,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.fernandosimon.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Increase size for Exadata Grid Disks\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#website\",\"url\":\"https:\/\/www.fernandosimon.com\/blog\/\",\"name\":\"Fernando Simon\",\"description\":\"Have you hugged your backup today?\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.fernandosimon.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9\",\"name\":\"Simon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a3dbc48de62fffb1829befb4a588d789ec6dc5e05977afabb3407a5f37a16482?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a3dbc48de62fffb1829befb4a588d789ec6dc5e05977afabb3407a5f37a16482?s=96&d=mm&r=g\",\"caption\":\"Simon\"},\"sameAs\":[\"http:\/\/www.fernandosimon.com\"],\"url\":\"https:\/\/www.fernandosimon.com\/blog\/author\/simon\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Increase size for Exadata Grid Disks - Fernando Simon","description":"Check how to increase Exadata Grid Disks and add this space for ASM diskgroup running over VM","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/","og_locale":"en_US","og_type":"article","og_title":"Increase size for Exadata Grid Disks - Fernando Simon","og_description":"Check how to increase Exadata Grid Disks and add this space for ASM diskgroup running over VM","og_url":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/","og_site_name":"Fernando Simon","article_published_time":"2019-06-24T17:03:05+00:00","article_modified_time":"2020-07-19T22:19:22+00:00","og_image":[{"url":"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa-300x91.png","type":"","width":"","height":""}],"author":"Simon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Simon","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#article","isPartOf":{"@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/"},"author":{"name":"Simon","@id":"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9"},"headline":"Increase size for Exadata Grid Disks","datePublished":"2019-06-24T17:03:05+00:00","dateModified":"2020-07-19T22:19:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/"},"wordCount":1114,"commentCount":3,"image":{"@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#primaryimage"},"thumbnailUrl":"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa-300x91.png","keywords":["ASM","Cell","Diskgroup","Exadata","Grid Disk","Oracle","Storate"],"articleSection":["ASM","Banco de Dados","Database","Engineered Systems","Exadata","Oracle","Storage","Storage Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/","url":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/","name":"Increase size for Exadata Grid Disks - Fernando Simon","isPartOf":{"@id":"https:\/\/www.fernandosimon.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#primaryimage"},"image":{"@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#primaryimage"},"thumbnailUrl":"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa-300x91.png","datePublished":"2019-06-24T17:03:05+00:00","dateModified":"2020-07-19T22:19:22+00:00","author":{"@id":"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9"},"description":"Check how to increase Exadata Grid Disks and add this space for ASM diskgroup running over VM","breadcrumb":{"@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#primaryimage","url":"https:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa.png","contentUrl":"https:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2014\/11\/Divisao-Discos-Exa.png","width":653,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/www.fernandosimon.com\/blog\/increase-size-for-exadata-grid-disks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fernandosimon.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Increase size for Exadata Grid Disks"}]},{"@type":"WebSite","@id":"https:\/\/www.fernandosimon.com\/blog\/#website","url":"https:\/\/www.fernandosimon.com\/blog\/","name":"Fernando Simon","description":"Have you hugged your backup today?","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fernandosimon.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9","name":"Simon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a3dbc48de62fffb1829befb4a588d789ec6dc5e05977afabb3407a5f37a16482?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a3dbc48de62fffb1829befb4a588d789ec6dc5e05977afabb3407a5f37a16482?s=96&d=mm&r=g","caption":"Simon"},"sameAs":["http:\/\/www.fernandosimon.com"],"url":"https:\/\/www.fernandosimon.com\/blog\/author\/simon\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p5ofTp-7Z","_links":{"self":[{"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/posts\/495","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/comments?post=495"}],"version-history":[{"count":0,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/posts\/495\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/media?parent=495"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/categories?post=495"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/tags?post=495"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}