{"id":53045,"date":"2022-11-10T17:19:57","date_gmt":"2022-11-10T17:19:57","guid":{"rendered":"https:\/\/dbtut.com\/?p=53045"},"modified":"2022-11-10T17:20:12","modified_gmt":"2022-11-10T17:20:12","slug":"delayed-application-of-redos-on-the-standby-side","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/","title":{"rendered":"Delayed Application of Redos on the Standby Side"},"content":{"rendered":"<p>It may not be required to apply Redos to the Standby side immediately. In this case, the DelayMins in the Broker and the Delay parameter in the LOG_ARCHOVE_DEST_n are set and the Redos are applied late to the Standby side.<\/p>\n<h4>LET&#8217;S TEST<\/h4>\n<p>1. The parameter is updated in the database where Redos are requested to be applied after a certain delay.<\/p>\n<pre class=\"lang:default decode:true \">DGMGRL&gt; edit database 'physical' set property 'DelayMins'=1;\r\nProperty \"DelayMins\" updated\r\n<\/pre>\n<p>2. When the parameter is updated, the LOGs that fall into ALERT LOGs are as follows.<\/p>\n[Physical]&#8212;&#8211;&gt;ALERT LOG<\/p>\n<pre class=\"lang:default decode:true \">ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL\r\nSat Mar 04 23:21:12 2017\r\nMRP0: Background Media Recovery cancelled with status 16037\r\nSat Mar 04 23:21:12 2017\r\nErrors in file \/u01\/app\/oracle\/diag\/rdbms\/physical\/physical\/trace\/physical_pr00_17506.trc:\r\nORA-16037: user requested cancel of managed recovery operation\r\nManaged Standby Recovery not using Real Time Apply\r\nRecovery interrupted!\r\nRecovered data files to a consistent state at change 2324478\r\nSat Mar 04 23:21:12 2017\r\nErrors in file \/u01\/app\/oracle\/diag\/rdbms\/physical\/physical\/trace\/physical_pr00_17506.trc:\r\nORA-16037: user requested cancel of managed recovery operation\r\nSat Mar 04 23:21:12 2017\r\nMRP0: Background Media Recovery process shutdown (physical)\r\nSat Mar 04 23:21:13 2017\r\nManaged Standby Recovery Canceled (physical)\r\nCompleted: ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL\r\nALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT  USING ARCHIVED LOGFILE\r\nSat Mar 04 23:21:13 2017\r\nAttempt to start background Managed Standby Recovery process (physical)\r\nStarting background process MRP0\r\nSat Mar 04 23:21:13 2017\r\nMRP0 started with pid=53, OS id=17538 \r\nSat Mar 04 23:21:13 2017\r\nMRP0: Background Managed Standby Recovery process started (physical)\r\nSat Mar 04 23:21:18 2017\r\n Started logmerger process\r\nSat Mar 04 23:21:18 2017\r\nManaged Standby Recovery not using Real Time Apply\r\nSat Mar 04 23:21:18 2017\r\nParallel Media Recovery started with 4 slaves\r\nSat Mar 04 23:21:18 2017\r\nWaiting for all non-current ORLs to be archived...\r\nSat Mar 04 23:21:18 2017\r\nAll non-current ORLs have been archived.\r\nSat Mar 04 23:21:18 2017\r\nMedia Recovery Waiting for thread 1 sequence 95 (in transit)\r\nCompleted: ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT  USING ARCHIVED LOGFILE\r\nSat Mar 04 23:21:20 2017\r\nArchived Log entry 105 added for thread 1 sequence 95 ID 0x69ce60a7 dest 1:\r\nRFS[11]: Selected log 4 for thread 1 sequence 96 dbid 1775091820 branch 937609135\r\nSat Mar 04 23:21:20 2017\r\nMedia Recovery Log \/u01\/app\/oracle\/fast_recovery_area\/PHYSICAL\/archivelog\/2017_03_04\/o1_mf_1_95_dcpcyjl7_.arc\r\nMedia Recovery Waiting for thread 1 sequence 96 (in transit)\r\nSat Mar 04 23:21:21 2017\r\nArchived Log entry 106 added for thread 1 sequence 96 ID 0x69ce60a7 dest 1:\r\nSat Mar 04 23:21:21 2017\r\nPrimary database is in MAXIMUM PERFORMANCE mode\r\nRFS[12]: Assigned to RFS process (PID:17566)\r\nRFS[12]: Selected log 4 for thread 1 sequence 97 dbid 1775091820 branch 937609135\r\nSat Mar 04 23:21:21 2017\r\nMedia Recovery Log \/u01\/app\/oracle\/fast_recovery_area\/PHYSICAL\/archivelog\/2017_03_04\/o1_mf_1_96_dcpcykon_.arc\r\nMedia Recovery Waiting for thread 1 sequence 97 (in transit)\r\n<\/pre>\n<p>Thus, we can see what the RFS process is that meets the Redos on the standby side.<\/p>\n<pre class=\"lang:default decode:true \">[oracle@physical ~]$ ps -ef | grep rfs\r\noracle   17702 16688  0 23:26 pts\/3    00:00:00 grep rfs\r\n[oracle@physical ~]$ ps -ef | grep 17566\r\noracle   17566     1  0 23:21 ?        00:00:00 oraclephysical (LOCAL=NO)\r\noracle   17707 16688  0 23:26 pts\/3    00:00:00 grep 17566\r\n<\/pre>\n<p>3. Tests are passed. A table belonging to the user TEST is deleted. First, the user&#8217;s existing tables are queried.<\/p>\n<pre class=\"lang:default decode:true \">[Primary - 04-03-2017 23:34:58] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n--------------------------------------------------------------------------------\r\nDEPARTMENTS_YEDEK\r\nJOBS_YEDEK\r\nLOCATIONS_YEDEK\r\nREGIONS_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Physical - 04-03-2017 23:34:58] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n--------------------------------------------------------------------------------\r\nDEPARTMENTS_YEDEK\r\nJOBS_YEDEK\r\nLOCATIONS_YEDEK\r\nREGIONS_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Logical - 04-03-2017 23:34:58] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n--------------------------------------------------------------------------------\r\nDEPARTMENTS_YEDEK\r\nLOCATIONS_YEDEK\r\nREGIONS_YEDEK\r\nJOBS_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<p>4. We DROP one of the tables.<\/p>\n<pre class=\"lang:default decode:true \">[Primary - 04-03-2017 23:35:03] SQL&gt; drop table test.DEPARTMENTS_YEDEK;\r\n\r\nTable dropped.\r\n\r\n[Primary - 04-03-2017 23:35:17] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n--------------------------------------------------------------------------------\r\nJOBS_YEDEK\r\nLOCATIONS_YEDEK\r\nREGIONS_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Physical - 04-03-2017 23:35:03] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n--------------------------------------------------------------------------------\r\nDEPARTMENTS_YEDEK\r\nJOBS_YEDEK\r\nLOCATIONS_YEDEK\r\nREGIONS_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Logical - 04-03-2017 23:35:03] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n--------------------------------------------------------------------------------\r\nLOCATIONS_YEDEK\r\nREGIONS_YEDEK\r\nJOBS_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<p>Even if we wait a few minutes, the Physical Standby shows that the table is not DROP. The reason is that Real-Time APPLY is disabled. Archive Apply is activated.<\/p>\n<p>5. By performing the Log Switch operation, Redo, which hosts the DROP operation, is transferred to the Stanbdy side.<\/p>\n<pre class=\"lang:default decode:true \">[Primary - 04-03-2017 23:38:11] SQL&gt; alter system switch logfile;\r\n\r\nSystem altered.\r\n<\/pre>\n[Physical]&#8212;&#8211;&gt;ALERT LOG<\/p>\n<pre class=\"lang:default decode:true \">Sat Mar 04 23:38:30 2017\r\nArchived Log entry 107 added for thread 1 sequence 97 ID 0x69ce60a7 dest 1:\r\nSat Mar 04 23:38:30 2017\r\nARC5: Archive log thread 1 sequence 97 available in 1 minute(s)\r\nSat Mar 04 23:38:30 2017\r\nRFS[12]: Selected log 4 for thread 1 sequence 98 dbid 1775091820 branch 937609135\r\nSat Mar 04 23:38:30 2017\r\nMedia Recovery Delayed for 1 minute(s) (thread 1 sequence 97)\r\n<\/pre>\n<p>6. After 1 minute, we check if the table is DROP.<\/p>\n<pre class=\"lang:default decode:true \">[Physical - 04-03-2017 23:41:48] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n--------------------------------------------------------------------------------\r\nJOBS_YEDEK\r\nLOCATIONS_YEDEK\r\nREGIONS_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n[Physical]&#8212;&#8211;&gt;ALERT LOG<\/p>\n<pre class=\"lang:default decode:true \">Sat Mar 04 23:39:30 2017\r\nMedia Recovery Log \/u01\/app\/oracle\/fast_recovery_area\/PHYSICAL\/archivelog\/2017_03_04\/o1_mf_1_97_dcpdyp23_.arc\r\nResize operation completed for file# 3, old size 778240K, new size 788480K\r\nMedia Recovery Waiting for thread 1 sequence 98 (in transit)\r\n\r\n\r\n<\/pre>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_53045\" class=\"pvc_stats all  \" data-element-id=\"53045\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>It may not be required to apply Redos to the Standby side immediately. In this case, the DelayMins in the Broker and the Delay parameter in the LOG_ARCHOVE_DEST_n are set and the Redos are applied late to the Standby side. LET&#8217;S TEST 1. The parameter is updated in the database where Redos are requested to &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_53045\" class=\"pvc_stats all  \" data-element-id=\"53045\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":484,"featured_media":53049,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-53045","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Delayed Application of Redos on the Standby Side - Database Tutorials<\/title>\n<meta name=\"description\" content=\"It may not be required to apply Redos to the Standby side immediately. In this case, the DelayMins in the Broker\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Delayed Application of Redos on the Standby Side - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"It may not be required to apply Redos to the Standby side immediately. In this case, the DelayMins in the Broker\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-10T17:19:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-10T17:20:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png\" \/>\n\t<meta property=\"og:image:width\" content=\"736\" \/>\n\t<meta property=\"og:image:height\" content=\"317\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Onur ARDAHANLI\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Onur ARDAHANLI\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/\"},\"author\":{\"name\":\"Onur ARDAHANLI\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6\"},\"headline\":\"Delayed Application of Redos on the Standby Side\",\"datePublished\":\"2022-11-10T17:19:57+00:00\",\"dateModified\":\"2022-11-10T17:20:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/\"},\"wordCount\":199,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/\",\"name\":\"Delayed Application of Redos on the Standby Side - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png\",\"datePublished\":\"2022-11-10T17:19:57+00:00\",\"dateModified\":\"2022-11-10T17:20:12+00:00\",\"description\":\"It may not be required to apply Redos to the Standby side immediately. In this case, the DelayMins in the Broker\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png\",\"width\":736,\"height\":317},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Delayed Application of Redos on the Standby Side\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6\",\"name\":\"Onur ARDAHANLI\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ecd20c3e1374ced4e1aefc82101cce4cd437be8fd957d1be3d106668b8a1b990?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ecd20c3e1374ced4e1aefc82101cce4cd437be8fd957d1be3d106668b8a1b990?s=96&d=mm&r=g\",\"caption\":\"Onur ARDAHANLI\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/onurardahanli\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Delayed Application of Redos on the Standby Side - Database Tutorials","description":"It may not be required to apply Redos to the Standby side immediately. In this case, the DelayMins in the Broker","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:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/","og_locale":"en_US","og_type":"article","og_title":"Delayed Application of Redos on the Standby Side - Database Tutorials","og_description":"It may not be required to apply Redos to the Standby side immediately. In this case, the DelayMins in the Broker","og_url":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/","og_site_name":"Database Tutorials","article_published_time":"2022-11-10T17:19:57+00:00","article_modified_time":"2022-11-10T17:20:12+00:00","og_image":[{"width":736,"height":317,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png","type":"image\/png"}],"author":"Onur ARDAHANLI","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Onur ARDAHANLI","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/"},"author":{"name":"Onur ARDAHANLI","@id":"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6"},"headline":"Delayed Application of Redos on the Standby Side","datePublished":"2022-11-10T17:19:57+00:00","dateModified":"2022-11-10T17:20:12+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/"},"wordCount":199,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/","url":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/","name":"Delayed Application of Redos on the Standby Side - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png","datePublished":"2022-11-10T17:19:57+00:00","dateModified":"2022-11-10T17:20:12+00:00","description":"It may not be required to apply Redos to the Standby side immediately. In this case, the DelayMins in the Broker","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/11\/Ekran-goruntusu-2022-11-10-201907.png","width":736,"height":317},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/11\/10\/delayed-application-of-redos-on-the-standby-side\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Delayed Application of Redos on the Standby Side"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6","name":"Onur ARDAHANLI","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ecd20c3e1374ced4e1aefc82101cce4cd437be8fd957d1be3d106668b8a1b990?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ecd20c3e1374ced4e1aefc82101cce4cd437be8fd957d1be3d106668b8a1b990?s=96&d=mm&r=g","caption":"Onur ARDAHANLI"},"url":"https:\/\/dbtut.com\/index.php\/author\/onurardahanli\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/53045","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/484"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=53045"}],"version-history":[{"count":1,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/53045\/revisions"}],"predecessor-version":[{"id":53050,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/53045\/revisions\/53050"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/53049"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=53045"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=53045"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=53045"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}