{"id":407,"date":"2013-06-20T14:27:21","date_gmt":"2013-06-20T17:27:21","guid":{"rendered":"http:\/\/www.dbarj.com.br\/?p=407"},"modified":"2014-10-09T23:38:51","modified_gmt":"2014-10-10T02:38:51","slug":"moving-ocr-voting-disk-to-oracle-asm-online","status":"publish","type":"post","link":"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/","title":{"rendered":"Moving OCR and Voting Disk to Oracle ASM Online"},"content":{"rendered":"<p>Prior Oracle 11gR2, it was only possible to the OCR and Voting Disk files in multiple raw devices, shared between the nodes of a cluster.<br \/>\nFrom this version on, it&#8217;s very interesting to take the advantages and capabilities of ASM (striping and mirror) to store those files.<\/p>\n<p>To store the OCR and Voting Disk files on a diskgroup, you must obey the following rules:<\/p>\n<ul>\n<li>If your diskgroup has &#8220;<strong>external<\/strong>&#8221; redundancy, it must have at least one disk associated.<\/li>\n<li>If your diskgroup has &#8220;<strong>normal<\/strong>&#8221; redundancy, it must have at least 3 disks associated, even though it can be create diskgroup with only 2 disks.<\/li>\n<li>If your diskgroup has &#8220;<strong>high<\/strong>&#8221; redundancy, it must have at least 5 disks associated, even though it can be create diskgroup with only 3 disks.<\/li>\n<\/ul>\n<p>In this article, I will use the second option, normal redundancy. As in my server there are only 2 disks available for the diskgroup, I asked to the storage team to add another 1 GB disk:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# \/etc\/init.d\/oracleasm listdisks\r\nDATA01\r\nOCRVOTE01\r\nOCRVOTE02\r\n[root@orarac01 ~]#<\/pre>\n<p>The disk has already been available:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# multipath -ll\r\nDATA01 (36000c29ab0accd959da8f1f78dd2de2f) dm-4 VMware,Virtual disk\r\nsize=300G features='0' hwhandler='0' wp=rw\r\n`-+- policy='round-robin 0' prio=1 status=active\r\n  `- 3:0:2:0 sde 8:64 active ready running\r\nOCRVOTE03 (36000c299550e110b041c9ab26acd33ac) dm-5 VMware,Virtual disk\r\nsize=1.0G features='0' hwhandler='0' wp=rw\r\n`-+- policy='round-robin 0' prio=1 status=active\r\n  `- 3:0:3:0 sdf 8:80 active ready running\r\nOCRVOTE02 (36000c29b67329567f6a6547d6fd3c769) dm-2 VMware,Virtual disk\r\nsize=1.0G features='0' hwhandler='0' wp=rw\r\n`-+- policy='round-robin 0' prio=1 status=active\r\n  `- 3:0:0:0 sdc 8:32 active ready running\r\nOCRVOTE01 (36000c29c1a57ee047d443991ef48894a) dm-3 VMware,Virtual disk\r\nsize=1.0G features='0' hwhandler='0' wp=rw\r\n`-+- policy='round-robin 0' prio=1 status=active\r\n  `- 3:0:1:0 sdd 8:48 active ready running\r\n[root@orarac01 ~]#<\/pre>\n<p>Adding a new disk to oracleasm:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# \/etc\/init.d\/oracleasm createdisk OCRVOTE03 \/dev\/dm-5\r\nMarking disk \"OCRVOTE03\" as an ASM disk:                   [  OK  ]\r\n[root@orarac01 ~]# \/etc\/init.d\/oracleasm listdisks\r\nDATA01\r\nOCRVOTE01\r\nOCRVOTE02\r\nOCRVOTE03\r\n[root@orarac01 ~]#<\/pre>\n<p>Enabling disk on another RAC node:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac02 ~]# \/etc\/init.d\/oracleasm scandisks\r\nScanning the system for Oracle ASMLib disks:               [  OK  ]\r\n[root@orarac02 ~]# \/etc\/init.d\/oracleasm listdisks\r\nDATA01\r\nOCRVOTE01\r\nOCRVOTE02\r\nOCRVOTE03\r\n[root@orarac02 ~]#<\/pre>\n<p>The next step is to create the new ASM diskgroup<\/p>\n<p>First, let&#8217;s try to put them as &#8220;High Redundancy&#8221; and see what happens.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"oracledb\"> \r\nCREATE DISKGROUP OCRVOTE HIGH REDUNDANCY\r\nFAILGROUP OCRVOTE_FG01 DISK '\/dev\/oracleasm\/disks\/OCRVOTE01' NAME OCRVOTE01  SIZE 1024M\r\nFAILGROUP OCRVOTE_FG02 DISK '\/dev\/oracleasm\/disks\/OCRVOTE02' NAME OCRVOTE02  SIZE 1024M\r\nFAILGROUP OCRVOTE_FG03 DISK '\/dev\/oracleasm\/disks\/OCRVOTE03' NAME OCRVOTE03  SIZE 1024M\r\nATTRIBUTE 'compatible.asm'='11.2.0.0.0','au_size'='1M';<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# crsctl replace votedisk +OCRVOTE\r\nFailed to create voting files on disk group OCRVOTE.\r\nChange to configuration failed, but was successfully rolled back.\r\nCRS-4000: Command Replace failed, or completed with errors.\r\n[root@orarac01 ~]#<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# tail -n 200 $GRID_HOME\/log\/orarac01\/client\/crsctl_root.log\r\n...\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: === clsssConfigLock ===\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: lock(0x2838a50), version(1), size(1088)\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: offsets(24), activever(186647296)\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: id(15), instantiation(5), incarn(1)\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: mapoff(28), configoff(548), mapsize(512)\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: state(10), holders(1), waiters(0)\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: committimestamp(0), commitstate(0)\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: === Map (of first 7 entries) ===\r\n2013-06-18 11:46:13.220: [ CSSCLNT][278546160]clsssConfigLockTrace: 010 000 000 000 000 000 000\r\n2013-06-18 11:46:13.221: [  CRSCTL][278546160]crsctl_replace_votedisk: calling kgfdvfPushDiskString\r\n2013-06-18 11:46:13.397: [  CRSCTL][278546160]function crsctl_replace_votedisk, error 1 [clsuSlosFormatDiag called with non-error slos.]\r\n.\r\n\r\n2013-06-18 11:46:13.397: [  CRSCTL][278546160]crsctl_replace_votedisk: pushed the ASM DS to the profile 1\r\n[   CLWAL][278546160]clsw_Initialize: OLR initlevel [30000]\r\n2013-06-18 11:46:13.432: [  CRSCTL][278546160]crsctl_format_diskgroup: creating diskgroup OCRVOTE\r\n2013-06-18 11:46:16.555: [  CRSCTL][278546160]function crsctl_format_diskgroup, error 1 SLOS: cat=-1, opn=(none), dep=(none), loc=ORA-01405: f\r\n.\r\n\r\n2013-06-18 11:46:16.555: [  CRSCTL][278546160]crsctl_format_diskgroup: diskgroup OCRVOTE creation with status 1. Please check the alert log file for ASM\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: === clsssConfigUnlock ===\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: lock(0x2837b50), version(1), size(1088)\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: offsets(24), activever(186647296)\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: id(15), instantiation(5), incarn(3)\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: mapoff(28), configoff(548), mapsize(512)\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: state(0), holders(0), waiters(0)\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: committimestamp(0), commitstate(0)\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: === Map (of first 7 entries) ===\r\n2013-06-18 11:46:16.568: [ CSSCLNT][278546160]clsssConfigLockTrace: 000 000 000 000 000 000 000\r\n...<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# tail -n 500 \/u01\/app\/grid\/diag\/asm\/+asm\/+ASM1\/trace\/alert_+ASM1.log\r\n...\r\nTue Jun 18 11:46:13 2013\r\nNOTE: Creating voting files in diskgroup OCRVOTE\r\nTue Jun 18 11:46:13 2013\r\nNOTE: Voting File refresh pending for group 2\/0x7f386577 (OCRVOTE)\r\nNOTE: Attempting voting file creation in diskgroup OCRVOTE\r\nNOTE: voting file allocation on grp 2 disk OCRVOTE_0000\r\nNOTE: voting file allocation on grp 2 disk OCRVOTE_0001\r\nNOTE: voting file allocation on grp 2 disk OCRVOTE_0002\r\nERROR: Voting file allocation failed for group OCRVOTE\r\nErrors in file \/u01\/app\/grid\/diag\/asm\/+asm\/+ASM1\/trace\/+ASM1_ora_6301.trc:\r\nORA-15274: Not enough failgroups (5) to create voting files\r\nNOTE: Attempting voting file refresh on diskgroup OCRVOTE\r\nNOTE: Voting file relocation is required in diskgroup OCRVOTE\r\nNOTE: Attempting voting file relocation on diskgroup OCRVOTE\r\nNOTE: voting file deletion on grp 2 disk OCRVOTE_0000\r\nNOTE: voting file deletion on grp 2 disk OCRVOTE_0001\r\nNOTE: voting file deletion on grp 2 disk OCRVOTE_0002\r\n...<\/pre>\n<p>The error is that it is necessary at least 5 failgroups to create the Voting Disk.<\/p>\n<p>We will then recreate them with the correct redundancy:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"oracledb\"> \r\nCREATE DISKGROUP OCRVOTE NORMAL REDUNDANCY\r\nFAILGROUP OCRVOTE_FG01 DISK '\/dev\/oracleasm\/disks\/OCRVOTE01' NAME OCRVOTE01  SIZE 1024M\r\nFAILGROUP OCRVOTE_FG02 DISK '\/dev\/oracleasm\/disks\/OCRVOTE02' NAME OCRVOTE02  SIZE 1024M\r\nFAILGROUP OCRVOTE_FG03 DISK '\/dev\/oracleasm\/disks\/OCRVOTE03' NAME OCRVOTE03  SIZE 1024M\r\nATTRIBUTE 'compatible.asm'='11.2.0.0.0','au_size'='1M';<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# crsctl replace votedisk +OCRVOTE\r\nSuccessful addition of voting disk 05ca1320e3244f70bf45d1fc37d325d5.\r\nSuccessful addition of voting disk 1affc0b6da314fe8bfd8dec18af4923b.\r\nSuccessful addition of voting disk 3d87bf2793e04fe4bfd6764f24ffafb1.\r\nSuccessful deletion of voting disk 4c9ddcb1acd14f27bf77652370a1a5b1.\r\nSuccessfully replaced voting disk group with +OCRVOTE.\r\nCRS-4266: Voting file(s) successfully replaced\r\n[root@orarac01 ~]# crsctl query css votedisk\r\n##  STATE    File Universal Id                File Name Disk group\r\n--  -----    -----------------                --------- ---------\r\n 1. ONLINE   05ca1320e3244f70bf45d1fc37d325d5 (\/dev\/oracleasm\/disks\/OCRVOTE01) [OCRVOTE]\r\n 2. ONLINE   1affc0b6da314fe8bfd8dec18af4923b (\/dev\/oracleasm\/disks\/OCRVOTE02) [OCRVOTE]\r\n 3. ONLINE   3d87bf2793e04fe4bfd6764f24ffafb1 (\/dev\/oracleasm\/disks\/OCRVOTE03) [OCRVOTE]\r\nLocated 3 voting disk(s).\r\n[root@orarac01 ~]#<\/pre>\n<p>The Voting Disk step is done.<br \/>\nThe next step is the CRS. Note that we are transferring him from another diskgroup (+DATA), which is used to store datafiles, to this another diskgroup recently created:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# ocrconfig -replace +DATA -replacement +OCRVOTE\r\nPROT-28: Cannot delete or replace the only configured Oracle Cluster Registry location\r\n[root@orarac01 ~]#<\/pre>\n<p>As we have only one OCR location configured, the &#8220;replace&#8221; command doesn&#8217;t work. We&#8217;ll need to add another one and delete the old:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \r\n[root@orarac01 ~]# ocrconfig -add +OCRVOTE\r\n[root@orarac01 ~]# ocrcheck\r\nStatus of Oracle Cluster Registry is as follows :\r\n         Version                  :          3\r\n         Total space (kbytes)     :     262120\r\n         Used space (kbytes)      :       2836\r\n         Available space (kbytes) :     259284\r\n         ID                       : 1089167638\r\n         Device\/File Name         :      +DATA\r\n                                    Device\/File integrity check succeeded\r\n         Device\/File Name         :   +OCRVOTE\r\n                                    Device\/File integrity check succeeded\r\n\r\n                                    Device\/File not configured\r\n\r\n                                    Device\/File not configured\r\n\r\n                                    Device\/File not configured\r\n\r\n         Cluster registry integrity check succeeded\r\n\r\n         Logical corruption check succeeded\r\n\r\n[root@orarac01 ~]#<\/pre>\n<p>Now erase the old:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\"> \t\t \r\n[root@orarac01 ~]# ocrconfig -delete +DATA\r\n[root@orarac01 ~]# ocrcheck\r\nStatus of Oracle Cluster Registry is as follows :\r\n         Version                  :          3\r\n         Total space (kbytes)     :     262120\r\n         Used space (kbytes)      :       2836\r\n         Available space (kbytes) :     259284\r\n         ID                       : 1089167638\r\n         Device\/File Name         :   +OCRVOTE\r\n                                    Device\/File integrity check succeeded\r\n\r\n                                    Device\/File not configured\r\n\r\n                                    Device\/File not configured\r\n\r\n                                    Device\/File not configured\r\n\r\n                                    Device\/File not configured\r\n\r\n         Cluster registry integrity check succeeded\r\n\r\n         Logical corruption check succeeded\r\n\r\n[root@orarac01 ~]# cat \/etc\/oracle\/ocr.loc\r\n#Device\/file +DATA getting replaced by device +OCRVOTE\r\nocrconfig_loc=+OCRVOTE\r\nlocal_only=false\r\n[root@orarac01 ~]#<\/pre>\n<p>Done!<\/p>\n<p>More information can be obtained at the Metalink article below:<br \/>\n<span style=\"text-decoration: underline;\"><strong>OCR \/ Vote disk Maintenance Operations: (ADD\/REMOVE\/REPLACE\/MOVE) [ID 428681.1]<\/strong><\/span><\/p>\n<b>Have you enjoyed? Please leave a comment or give a \ud83d\udc4d!<\/b>\n<p>&nbsp;<\/p>\n<div class='watch-action'><div class='watch-position align-left'><div class='action-like'><a class='lbg-style2 like-407 jlk' href='javascript:void(0)' data-task='like' data-post_id='407' data-nonce='7596861fb6' rel='nofollow'><img class='wti-pixel' src='https:\/\/www.dbarj.com.br\/wp-content\/plugins\/wti-like-post\/images\/pixel.gif' title='Like' \/><span class='lc-407 lc'>+10<\/span><\/a><\/div><\/div> <div class='status-407 status align-left'><\/div><\/div><div class='wti-clear'><\/div>","protected":false},"excerpt":{"rendered":"<p>Prior Oracle 11gR2, it was only possible to the OCR and Voting Disk files in multiple raw devices, shared between the nodes of a cluster. From this version on, it&#8217;s very interesting to take the advantages and capabilities of ASM (striping and mirror) to store those files. To store the OCR and Voting Disk files &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/\">Continue reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[],"class_list":["post-407","post","type-post","status-publish","format-standard","hentry","category-rac-en","item-wrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Moving OCR and Voting Disk to Oracle ASM Online - DBA - Rodrigo Jorge - Oracle Tips and Guides<\/title>\n<meta name=\"description\" content=\"Step by step of how to move OCR and Voting Disk to Oracle ASM Online.\" \/>\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.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DBA RJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/\"},\"author\":{\"name\":\"DBA RJ\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"headline\":\"Moving OCR and Voting Disk to Oracle ASM Online\",\"datePublished\":\"2013-06-20T17:27:21+00:00\",\"dateModified\":\"2014-10-10T02:38:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/\"},\"wordCount\":323,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"articleSection\":[\"RAC, ASM &amp; Clusterware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/\",\"name\":\"Moving OCR and Voting Disk to Oracle ASM Online - DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#website\"},\"datePublished\":\"2013-06-20T17:27:21+00:00\",\"dateModified\":\"2014-10-10T02:38:51+00:00\",\"description\":\"Step by step of how to move OCR and Voting Disk to Oracle ASM Online.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2013\\\/06\\\/moving-ocr-voting-disk-to-oracle-asm-online\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Moving OCR and Voting Disk to Oracle ASM Online\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/\",\"name\":\"DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"description\":\"Blog about Databases, Security and High Availability\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\",\"name\":\"DBA RJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"contentUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"width\":712,\"height\":712,\"caption\":\"DBA RJ\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Moving OCR and Voting Disk to Oracle ASM Online - DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"Step by step of how to move OCR and Voting Disk to Oracle ASM Online.","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.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/","twitter_misc":{"Written by":"DBA RJ","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/#article","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/"},"author":{"name":"DBA RJ","@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"headline":"Moving OCR and Voting Disk to Oracle ASM Online","datePublished":"2013-06-20T17:27:21+00:00","dateModified":"2014-10-10T02:38:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/"},"wordCount":323,"commentCount":0,"publisher":{"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"articleSection":["RAC, ASM &amp; Clusterware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/","url":"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/","name":"Moving OCR and Voting Disk to Oracle ASM Online - DBA - Rodrigo Jorge - Oracle Tips and Guides","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/en\/#website"},"datePublished":"2013-06-20T17:27:21+00:00","dateModified":"2014-10-10T02:38:51+00:00","description":"Step by step of how to move OCR and Voting Disk to Oracle ASM Online.","breadcrumb":{"@id":"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbarj.com.br\/en\/2013\/06\/moving-ocr-voting-disk-to-oracle-asm-online\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dbarj.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Moving OCR and Voting Disk to Oracle ASM Online"}]},{"@type":"WebSite","@id":"https:\/\/www.dbarj.com.br\/en\/#website","url":"https:\/\/www.dbarj.com.br\/en\/","name":"DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"Blog about Databases, Security and High Availability","publisher":{"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbarj.com.br\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9","name":"DBA RJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","url":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","contentUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","width":712,"height":712,"caption":"DBA RJ"},"logo":{"@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png"}}]}},"_links":{"self":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/407","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/comments?post=407"}],"version-history":[{"count":0,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/407\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/media?parent=407"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/categories?post=407"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/tags?post=407"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}