{"id":40935,"date":"2022-05-04T18:21:05","date_gmt":"2022-05-04T18:21:05","guid":{"rendered":"https:\/\/dbtut.com\/?p=40935"},"modified":"2022-05-04T18:22:11","modified_gmt":"2022-05-04T18:22:11","slug":"data-guard-broker-disabling-and-enabling-apply-services","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/","title":{"rendered":"Data Guard Broker &#8211; Disabling and Enabling Apply Services"},"content":{"rendered":"<p>In today&#8217;s article, I will be talking about Data Guard Broker &#8211; Disabling and Enabling Apply Services.<\/p>\n<p>As we know, we perform Redo-Apply operations in Physical and Logical Standby Databases with the following commands.<\/p>\n<pre class=\"lang:default decode:true \">[Standby-1] SQL&gt; alter database recover managed standby database cancel;\r\n\r\nDatabase altered.\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Logical-1] SQL&gt; alter database stop logical standby apply;\r\n\r\nDatabase altered.\r\n<\/pre>\n<p>We do these transactions with the broker as follows.<\/p>\n<p>1. We stop Redo-Apply in Physical Standby Database.<\/p>\n<pre class=\"lang:default decode:true \">DGMGRL&gt; edit database standby set state='APPLY-OFF';\r\nSucceeded.\r\n<\/pre>\n[Standby-2]&#8212;&gt; ALERT LOG<\/p>\n<pre class=\"lang:default decode:true \">Fri Jan 13 14:07:47 2017\r\nALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL\r\nFri Jan 13 14:07:47 2017\r\nMRP0: Background Media Recovery cancelled with status 16037\r\nErrors in file \/u01\/app\/oracle\/diag\/rdbms\/standby\/primary2\/trace\/primary2_pr00_13441.trc:\r\nORA-16037: user requested cancel of managed recovery operation\r\nFri Jan 13 14:07:47 2017\r\nManaged Standby Recovery not using Real Time Apply\r\nRecovery interrupted!\r\nRecovered data files to a consistent state at change 4464112\r\nFri Jan 13 14:07:48 2017\r\nReconfiguration started (old inc 13, new inc 15)\r\nList of instances:\r\n 1 2 (myinst: 2) \r\n Global Resource Directory frozen\r\n Communication channels reestablished\r\nFri Jan 13 14:07:48 2017\r\n * domain 0 valid = 1 according to instance 1 \r\n Master broadcasted resource hash value bitmaps\r\n Non-local Process blocks cleaned out\r\nFri Jan 13 14:07:48 2017\r\n LMS 0: 0 GCS shadows cancelled, 0 closed, 0 Xw survived\r\nFri Jan 13 14:07:48 2017\r\n LMS 1: 0 GCS shadows cancelled, 0 closed, 0 Xw survived\r\n Set master node info \r\n Submitted all remote-enqueue requests\r\n Dwn-cvts replayed, VALBLKs dubious\r\n All grantable enqueues granted\r\n Submitted all GCS remote-cache requests\r\n Fix write in gcs resources\r\nReconfiguration complete\r\nFri Jan 13 14:07:49 2017\r\nBlock change tracking service stopping.\r\nStopping background process CTWR\r\nFri Jan 13 14:07:50 2017\r\nMRP0: Background Media Recovery process shutdown (primary2)\r\nManaged Standby Recovery Canceled (primary2)\r\nCompleted: ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL\r\n<\/pre>\n[Standby-1]&#8212;-&gt;ALERT LOG<\/p>\n<pre class=\"lang:default decode:true \">Fri Jan 13 14:07:53 2017\r\nManaged Standby Recovery not using Real Time Apply\r\n<\/pre>\n<p>2. We check whether it is stopped from the broker.<\/p>\n<pre class=\"lang:default decode:true \">DGMGRL&gt; show database standby;                     \r\n\r\nDatabase - standby\r\n\r\n  Role:            PHYSICAL STANDBY\r\n  Intended State:  APPLY-OFF\r\n  Transport Lag:   0 seconds (computed 1 second ago)\r\n  Apply Lag:       8 minutes 38 seconds (computed 1 second ago)\r\n  Apply Rate:      (unknown)\r\n  Real Time Query: OFF\r\n  Instance(s):\r\n    primary1\r\n    primary2 (apply instance)\r\n\r\nDatabase Status:\r\nSUCCESS\r\n<\/pre>\n<p>3. Query all DBs before a table is DROPed to check if Redo-Apply has stopped.<\/p>\n<pre class=\"lang:default decode:true \">[Primary-2] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nJOB_HISTORY_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Physical-2] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nJOB_HISTORY_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Logical-1] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nEMPLOYEES_YEDEK\r\nJOB_HISTORY_YEDEK\r\n<\/pre>\n<p>4. We DROP the table and query it from Standby DB&#8217;s.<\/p>\n<pre class=\"lang:default decode:true \">[Primary-2] SQL&gt; drop table test.JOB_HISTORY_YEDEK;\r\n\r\nTable dropped.\r\n\r\n[Primary-2] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nEMPLOYEES_YEDEK<\/pre>\n<pre class=\"lang:default decode:true \">[Physical-2] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nJOB_HISTORY_YEDEK\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Logical-1] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<p>5. When we see that the table is not deleted, we also check the APPLY LAG.<\/p>\n<pre class=\"lang:default decode:true \">[Physical-2] SQL&gt; set linesize 500\r\n[Physical-2] SQL&gt; column name format a10\r\n[Physical-2] SQL&gt; column value format a30\r\n[Physical-2] SQL&gt; select name, value from v$dataguard_stats where name ='apply lag';\r\n\r\nNAME       VALUE\r\n---------- ------------------------------\r\napply lag  +00 00:07:45\r\n<\/pre>\n<p>6. We start Redo-Apply again.<\/p>\n<pre class=\"lang:default decode:true \">DGMGRL&gt; edit database standby set state='APPLY-ON';\r\nSucceeded.\r\n\r\nFri Jan 13 14:17:11 2017\r\nALTER DATABASE RECOVER MANAGED STANDBY DATABASE  THROUGH ALL SWITCHOVER DISCONNECT  USING CURRENT LOGFILE\r\nAttempt to start background Managed Standby Recovery process (primary2)\r\n\r\nDGMGRL&gt; show database standby;\r\n\r\nDatabase - standby\r\n\r\n  Role:            PHYSICAL STANDBY\r\n  Intended State:  APPLY-ON\r\n  Transport Lag:   0 seconds (computed 0 seconds ago)\r\n  Apply Lag:       0 seconds (computed 0 seconds ago)\r\n  Apply Rate:      0 Byte\/s\r\n  Real Time Query: ON\r\n  Instance(s):\r\n    primary1\r\n    primary2 (apply instance)\r\n\r\nDatabase Status:\r\nSUCCESS\r\n<\/pre>\n<p>7. We check if the table has been deleted.<\/p>\n<pre class=\"lang:default decode:true \">[Physical-2] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nEMPLOYEES_YEDEK\r\n<\/pre>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_40935\" class=\"pvc_stats all  \" data-element-id=\"40935\" 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>In today&#8217;s article, I will be talking about Data Guard Broker &#8211; Disabling and Enabling Apply Services. As we know, we perform Redo-Apply operations in Physical and Logical Standby Databases with the following commands. [Standby-1] SQL&gt; alter database recover managed standby database cancel; Database altered. [Logical-1] SQL&gt; alter database stop logical standby apply; Database altered. &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_40935\" class=\"pvc_stats all  \" data-element-id=\"40935\" 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":40938,"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-40935","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>Data Guard Broker - Disabling and Enabling Apply Services - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In today&#039;s article, I will be talking about Data Guard Broker - Disabling and Enabling Apply Services. As we know, we perform Redo-Apply\" \/>\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\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Data Guard Broker - Disabling and Enabling Apply Services - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In today&#039;s article, I will be talking about Data Guard Broker - Disabling and Enabling Apply Services. As we know, we perform Redo-Apply\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-04T18:21:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-04T18:22:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"805\" \/>\n\t<meta property=\"og:image:height\" content=\"365\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"3 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\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/\"},\"author\":{\"name\":\"Onur ARDAHANLI\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6\"},\"headline\":\"Data Guard Broker &#8211; Disabling and Enabling Apply Services\",\"datePublished\":\"2022-05-04T18:21:05+00:00\",\"dateModified\":\"2022-05-04T18:22:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/\"},\"wordCount\":130,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/\",\"name\":\"Data Guard Broker - Disabling and Enabling Apply Services - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg\",\"datePublished\":\"2022-05-04T18:21:05+00:00\",\"dateModified\":\"2022-05-04T18:22:11+00:00\",\"description\":\"In today's article, I will be talking about Data Guard Broker - Disabling and Enabling Apply Services. As we know, we perform Redo-Apply\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg\",\"width\":805,\"height\":365},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data Guard Broker &#8211; Disabling and Enabling Apply Services\"}]},{\"@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":"Data Guard Broker - Disabling and Enabling Apply Services - Database Tutorials","description":"In today's article, I will be talking about Data Guard Broker - Disabling and Enabling Apply Services. As we know, we perform Redo-Apply","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\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/","og_locale":"en_US","og_type":"article","og_title":"Data Guard Broker - Disabling and Enabling Apply Services - Database Tutorials","og_description":"In today's article, I will be talking about Data Guard Broker - Disabling and Enabling Apply Services. As we know, we perform Redo-Apply","og_url":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/","og_site_name":"Database Tutorials","article_published_time":"2022-05-04T18:21:05+00:00","article_modified_time":"2022-05-04T18:22:11+00:00","og_image":[{"width":805,"height":365,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg","type":"image\/jpeg"}],"author":"Onur ARDAHANLI","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Onur ARDAHANLI","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/"},"author":{"name":"Onur ARDAHANLI","@id":"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6"},"headline":"Data Guard Broker &#8211; Disabling and Enabling Apply Services","datePublished":"2022-05-04T18:21:05+00:00","dateModified":"2022-05-04T18:22:11+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/"},"wordCount":130,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/","url":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/","name":"Data Guard Broker - Disabling and Enabling Apply Services - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg","datePublished":"2022-05-04T18:21:05+00:00","dateModified":"2022-05-04T18:22:11+00:00","description":"In today's article, I will be talking about Data Guard Broker - Disabling and Enabling Apply Services. As we know, we perform Redo-Apply","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-1.jpg","width":805,"height":365},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/04\/data-guard-broker-disabling-and-enabling-apply-services\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Data Guard Broker &#8211; Disabling and Enabling Apply Services"}]},{"@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\/40935","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=40935"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/40935\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/40938"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=40935"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=40935"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=40935"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}