{"id":10677,"date":"2017-11-30T10:58:20","date_gmt":"2017-11-30T09:58:20","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/"},"modified":"2017-11-30T10:58:20","modified_gmt":"2017-11-30T09:58:20","slug":"transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/","title":{"rendered":"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots"},"content":{"rendered":"<p>If you store your databases on the cluster filesystem ACFS you may use the provided Perl-script <a title=\"gDBClone\" href=\"http:\/\/www.oracle.com\/technetwork\/indexes\/samplecode\/gdbclone-download-2295388.html\">gDBClone<\/a> from OTN to clone databases or create snapshot databases. It is an interesting approach to create clones from the Production DB in minutes regardless of the production DB size. What you do is to create a standby DB from your production DB on a separate cluster and use that standby DB as a Gold\/Master copy for ACFS snapshots. <\/p>\n<p>In a Production environment with Data Guard Broker we wanted to use that technique, but were confronted with an issue:<\/p>\n<p>The Production DB had already a physical standby DB with the Data Guard Broker running. The protection mode was MaxAvailability, which means transport of the redo in sync mode. The master\/gold copy to get the snapshots from should receive the redo data in async mode. How to achieve that?<\/p>\n<p>Actually you can achieve it by adding a standby database and set the database property LogXptMode = &#8216;ASYNC&#8217;, but that would add a &#8220;non-production&#8221; database to your production broker configuration.<\/p>\n<p>There is an alternative. Not very common parameters in a Broker configuration are<\/p>\n<p><code><br \/>\nExternalDestination1<br \/>\nExternalDestination2<br \/>\n<\/code><\/p>\n<p>With those parameters (which are available in 11.2.0.4 and 12.1.0.2 onwards) you actually can send your redo to a destination in async mode. The parameters are documented as follows:<br \/>\n<em><br \/>\nThe ExternalDestination1 configuration property is used to specify a redo transport destination that can receive redo data from the current primary database. To set up transport of redo data to the specified destination, the broker uses the values specified for this parameter to define a LOG_ARCHIVE_DEST_n initialization parameter on the primary database. The broker also monitors the health of the transport to the specified destination.<\/p>\n<p>After a role change, the broker automatically sets up a LOG_ARCHIVE_DEST_n initialization parameter on the new primary database to ship redo data to the specified destination.<\/p>\n<p>I.e. you can set the parameter the same as LOG_ARCHIVE_DEST_n, but the following options are not allowed:<\/p>\n<p>ALTERNATE<br \/>\nDELAY<br \/>\nLOCATION<br \/>\nMANDATORY<br \/>\nMAX_FAILURE<br \/>\nNET_TIMEOUT<br \/>\nSYNC<br \/>\nVALID_FOR<br \/>\n<\/em><\/p>\n<p>So let&#8217;s assume I created my DB GOLDCOP as a standby DB using the rman duplicate command<\/p>\n<p><code><br \/>\nRMAN&gt; duplicate target database for standby from active database dorecover nofilenamecheck;<br \/>\n<\/code><\/p>\n<p>or alternatively using<\/p>\n<p><code><br \/>\n# .\/gDBClone clone -sdbname PRIM -sdbscan scoda7 -tdbname GOLDCOP -tdbhome OraDb11g_home1 -dataacfs \/cloudfs -standby<br \/>\n<\/code><\/p>\n<p>In the broker configuration I added the DB GOLDCOP as follows:<br \/>\n<code><br \/>\nDGMGRL&gt; show configuration;<br \/>\n&nbsp;<br \/>\nConfiguration - MYPROD<br \/>\n&nbsp;<br \/>\n  Protection Mode: MaxAvailability<br \/>\n  Databases:<br \/>\n    PRIM - Primary database<br \/>\n    STBY - Physical standby database<br \/>\n&nbsp;<br \/>\nFast-Start Failover: DISABLED<br \/>\n&nbsp;<br \/>\nConfiguration Status:<br \/>\nSUCCESS<br \/>\n&nbsp;<br \/>\nDGMGRL&gt; edit configuration set property ExternalDestination1 = 'service=goldcop db_unique_name=GOLDCOP noaffirm async';<br \/>\nProperty \"externaldestination1\" updated<br \/>\nDGMGRL&gt; show configuration;<br \/>\n&nbsp;<br \/>\nConfiguration - MYPROD<br \/>\n&nbsp;<br \/>\n  Protection Mode: MaxAvailability<br \/>\n  Databases:<br \/>\n    PRIM - Primary database<br \/>\n    STBY - Physical standby database<br \/>\n    GOLDCOP - External destination 1<br \/>\n&nbsp;<br \/>\nFast-Start Failover: DISABLED<br \/>\n&nbsp;<br \/>\nConfiguration Status:<br \/>\nSUCCESS<br \/>\n<\/code><\/p>\n<p>Let&#8217;s check if I really do NOAFFIRM ASYNC redo transport on PRIM:<br \/>\n<code><br \/>\nSQL&gt; select DEST_NAME, DB_UNIQUE_NAME, AFFIRM, TRANSMIT_MODE from v$archive_dest where dest_id in (2,3);<br \/>\n&nbsp;<br \/>\nDEST_NAME                        DB_UNIQUE_NAME                 AFF TRANSMIT_MOD<br \/>\n-------------------------------- ------------------------------ --- ------------<br \/>\nLOG_ARCHIVE_DEST_2               STBY                           YES PARALLELSYNC<br \/>\nLOG_ARCHIVE_DEST_3               GOLDCOP                        NO  ASYNCHRONOUS<br \/>\n<\/code><\/p>\n<p>The external destination is not a database in the configuration:<br \/>\n<code><br \/>\nDGMGRL&gt; show database \"GOLDCOP\";<br \/>\nObject \"GOLDCOP\" was not found<br \/>\n<\/code><\/p>\n<p>But the transport to its destination is monitored by the Broker. I.e. when shutting down the DB GOLDCOP I do get an error:<br \/>\n<code><br \/>\nDGMGRL&gt; show configuration;<br \/>\n&nbsp;<br \/>\nConfiguration - MYPROD<br \/>\n&nbsp;<br \/>\n  Protection Mode: MaxAvailability<br \/>\n  Databases:<br \/>\n    PRIM - Primary database<br \/>\n      Error: ORA-16778: redo transport error for one or more databases<br \/>\n&nbsp;<br \/>\n    STBY - Physical standby database<br \/>\n    GOLDCOP - External destination 1<br \/>\n&nbsp;<br \/>\nFast-Start Failover: DISABLED<br \/>\n&nbsp;<br \/>\nConfiguration Status:<br \/>\nERROR<br \/>\n&nbsp;<br \/>\nDGMGRL&gt; show instance \"PRIM\";<br \/>\n&nbsp;<br \/>\nInstance 'PRIM' of database 'PRIM'<br \/>\n&nbsp;<br \/>\n  Instance Error(s):<br \/>\n    ORA-16737: the redo transport service for standby database \"GOLDCOP\" has an error<br \/>\n&nbsp;<br \/>\nInstance Status:<br \/>\nERROR<br \/>\n<\/code><\/p>\n<p>As the External destination 1 is not &#8220;a database&#8221; in the broker configuration, it actually also does not matter if the broker is started (dg_broker_start=TRUE) at the external destination GOLDCOP or not.<br \/>\nTo start applying redo on the external destination, you have to start managed recovery as you would without a broker configuration:<br \/>\n<code><br \/>\nalter database recover managed standby database using current logfile disconnect from session;<br \/>\n<\/code><\/p>\n<p>And redo real time apply is happening on GOLDCOP:<br \/>\n<code><br \/>\nSQL&gt; select name,value<br \/>\n  2  from v$dataguard_stats<br \/>\n  3  where name in ('apply lag','transport lag');<br \/>\n&nbsp;<br \/>\nNAME                 VALUE<br \/>\n-------------------- --------------------<br \/>\ntransport lag        +00 00:00:00<br \/>\napply lag            +00 00:00:00<br \/>\n&nbsp;<br \/>\nSQL&gt;<br \/>\nSQL&gt; select inst_id,process,pid,status,thread#,sequence#, block#<br \/>\n  2  from gv$managed_standby<br \/>\n  3  where process like 'MRP%';<br \/>\n&nbsp;<br \/>\n   INST_ID PROCESS          PID STATUS          THREAD#  SEQUENCE#     BLOCK#<br \/>\n---------- --------- ---------- ------------ ---------- ---------- ----------<br \/>\n         1 MRP0            5155 APPLYING_LOG          1         50        420<br \/>\n<\/code><\/p>\n<p>To make the external destination self managing I did set the archivelog deletion policy on GOLDCOP to<br \/>\n<code><br \/>\nCONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON ALL STANDBY;<br \/>\n<\/code><br \/>\nin rman so that applied archives become reclaimable automatically in the fast recovery area. In addition I set<br \/>\n<code><br \/>\nfal_server='PRIM'<br \/>\n<\/code><\/p>\n<p>on GOLDCOP to ensure that archive gaps can be resolved.<\/p>\n<p>The pro&#8217;s of above configuration are:<br \/>\n&#8211; the GOLDCOP-DB does not cause much overhead for my Production DB (async redo transport).<br \/>\n&#8211; Decoupling my GOLDCOP DB from Primary (temporarily) is fast and easy:<br \/>\n<code>edit configuration set property ExternalDestination1 = '';<\/code><\/p>\n<p>REMARK: Of course I do also have the other advantages of the gDBClone-approach:<br \/>\n&#8211; A production copy on a separate cluster which serves as a gold-copy to take snapshots from for testing or development purposes.<br \/>\n&#8211; Creating a snapshot database takes minutes regardless of the DB size.<\/p>\n<p>Con&#8217;s:<br \/>\n&#8211; I have to take care to start managed standby database recovery on my GOLDCOP-DB. I.e. the same as when running data guard without the Broker.<\/p>\n<p>To create a snapshot DB I just do something like:<\/p>\n<p><code><br \/>\n# .\/gDBClone snap -sdbname GOLDCOP -tdbname PRODCOP1<br \/>\n<\/code><\/p>\n<p>Et voil\u00e0 a production copy in 2 minutes.<\/p>\n<p>If PRODCOP1 is no longer needed I can delete it:<\/p>\n<p><code><br \/>\n# .\/gDBClone deldb -tdbname PRODCOP1<br \/>\n<\/code><\/p>\n<p>Besides using the configuration property ExternalDestination1 there are other possibilities in 12c to run a standby DB as a master copy for snapshots without affecting the production system (like e.g. the support of cascaded standby DBs in the Broker), but I still think that the external destinations feature offers a good possibility to run a master copy.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you store your databases on the cluster filesystem ACFS you may use the provided Perl-script gDBClone from OTN to clone databases or create snapshot databases. It is an interesting approach to create clones from the Production DB in minutes regardless of the production DB size. What you do is to create a standby DB [&hellip;]<\/p>\n","protected":false},"author":35,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229,59],"tags":[600,1236,1237,221,1238,1239,1240],"type_dbi":[],"class_list":["post-10677","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring","category-oracle","tag-acfs","tag-async","tag-broker","tag-data-guard","tag-externaldestination1","tag-externaldestination2","tag-gdbclone"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots - dbi Blog<\/title>\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.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots\" \/>\n<meta property=\"og:description\" content=\"If you store your databases on the cluster filesystem ACFS you may use the provided Perl-script gDBClone from OTN to clone databases or create snapshot databases. It is an interesting approach to create clones from the Production DB in minutes regardless of the production DB size. What you do is to create a standby DB [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-30T09:58:20+00:00\" \/>\n<meta name=\"author\" content=\"Clemens Bleile\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ifgtxD2SrQ8r!YuXj\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Clemens Bleile\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/\"},\"author\":{\"name\":\"Clemens Bleile\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da\"},\"headline\":\"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots\",\"datePublished\":\"2017-11-30T09:58:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/\"},\"wordCount\":743,\"commentCount\":0,\"keywords\":[\"ACFS\",\"async\",\"Broker\",\"Data Guard\",\"ExternalDestination1\",\"ExternalDestination2\",\"gDBClone\"],\"articleSection\":[\"Database Administration &amp; Monitoring\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/\",\"name\":\"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2017-11-30T09:58:20+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da\",\"name\":\"Clemens Bleile\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g\",\"caption\":\"Clemens Bleile\"},\"description\":\"Clemens Bleile has more than 30 years of IT experience, thirteen in Oracle Support and fifteen in Oracle Consulting. He is specialized in Oracle Database Performance Tuning (SQL Tuning, DB Tuning) and developing an Oracle DB IT architecture (highly available, low-maintenance, cost efficient storage of data). He is an expert in problem analysis and resolution. Prior to joining dbi services, Clemens Bleile was Manager of the EMEA Database Performance team at the Oracle Global Customer Support Services. Clemens Bleile is Oracle Certified Professional 11g, 12c and Oracle Certified Expert for Performance Management and Tuning and holds a Master Degree, Business Information Systems from the Fachhochschule Furtwangen, Germany.\",\"sameAs\":[\"https:\/\/www.dbi-services.com\",\"https:\/\/x.com\/ifgtxD2SrQ8r!YuXj\"],\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/clemens-bleile\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots - dbi Blog","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.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/","og_locale":"en_US","og_type":"article","og_title":"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots","og_description":"If you store your databases on the cluster filesystem ACFS you may use the provided Perl-script gDBClone from OTN to clone databases or create snapshot databases. It is an interesting approach to create clones from the Production DB in minutes regardless of the production DB size. What you do is to create a standby DB [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/","og_site_name":"dbi Blog","article_published_time":"2017-11-30T09:58:20+00:00","author":"Clemens Bleile","twitter_card":"summary_large_image","twitter_creator":"@ifgtxD2SrQ8r!YuXj","twitter_misc":{"Written by":"Clemens Bleile","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/"},"author":{"name":"Clemens Bleile","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da"},"headline":"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots","datePublished":"2017-11-30T09:58:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/"},"wordCount":743,"commentCount":0,"keywords":["ACFS","async","Broker","Data Guard","ExternalDestination1","ExternalDestination2","gDBClone"],"articleSection":["Database Administration &amp; Monitoring","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/","url":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/","name":"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-11-30T09:58:20+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/transfer-redo-in-async-mode-to-the-goldmaster-copy-of-the-production-db-for-acfs-snapshots\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Transfer redo in async-mode to the Gold\/Master copy of the Production DB for ACFS snapshots"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da","name":"Clemens Bleile","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g","caption":"Clemens Bleile"},"description":"Clemens Bleile has more than 30 years of IT experience, thirteen in Oracle Support and fifteen in Oracle Consulting. He is specialized in Oracle Database Performance Tuning (SQL Tuning, DB Tuning) and developing an Oracle DB IT architecture (highly available, low-maintenance, cost efficient storage of data). He is an expert in problem analysis and resolution. Prior to joining dbi services, Clemens Bleile was Manager of the EMEA Database Performance team at the Oracle Global Customer Support Services. Clemens Bleile is Oracle Certified Professional 11g, 12c and Oracle Certified Expert for Performance Management and Tuning and holds a Master Degree, Business Information Systems from the Fachhochschule Furtwangen, Germany.","sameAs":["https:\/\/www.dbi-services.com","https:\/\/x.com\/ifgtxD2SrQ8r!YuXj"],"url":"https:\/\/www.dbi-services.com\/blog\/author\/clemens-bleile\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10677","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/35"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=10677"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10677\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10677"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10677"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10677"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10677"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}