{"id":41481,"date":"2022-05-18T14:47:09","date_gmt":"2022-05-18T14:47:09","guid":{"rendered":"https:\/\/dbtut.com\/?p=41481"},"modified":"2022-05-18T14:47:09","modified_gmt":"2022-05-18T14:47:09","slug":"changing-parameters-from-sqlplus-while-broker-is-enabled","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/","title":{"rendered":"Changing Parameters From SQLPLUS While Broker Is Enabled"},"content":{"rendered":"<p>In today&#8217;s article, I will teach you to Changing Parameters From SQLPLUS While Broker Is Enabled.<\/p>\n<p>Changing parameters from SQLPLUS while the broker is ENABLE means that the broker does not work properly \/ cannot perform monitoring operations.<\/p>\n<p>We are testing.<\/p>\n[Commands run from DGMGRL are all run from Primary-1 by connecting to DGMGRL]\n<p>1. We connect to the broker and question STATUS.<\/p>\n<pre class=\"lang:default decode:true \">DGMGRL&gt; connect sys\/Passw0rd4\r\nConnected.\r\nDGMGRL&gt; show configuration\r\n\r\nConfiguration - Broker _Configuration\r\n\r\n  Protection Mode: MaxPerformance\r\n  Databases:\r\n    primary - Primary database\r\n    standby - Physical standby database\r\n    logical - Logical standby database\r\n\r\nFast-Start Failover: DISABLED\r\n\r\nConfiguration Status:\r\nSUCCESS\r\n\r\nDGMGRL&gt; show database logical\r\n\r\nDatabase - logical\r\n\r\n  Role:            LOGICAL 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  Instance(s):\r\n    primary1\r\n    primary2 (apply instance)\r\n\r\nDatabase Status:\r\nSUCCESS\r\n<\/pre>\n<p>2. We query the tables of the TEST scheme to be tested.<\/p>\n<pre class=\"lang:default decode:true \">[Primary-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<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<pre class=\"lang:default decode:true\">[Physical-1] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nEMPLOYEES_YEDEK\r\n\r\n<\/pre>\n<p>3. We connect to SQLPLUS and stop Redo-Apply in Logical Standby Database.<\/p>\n<pre class=\"lang:default decode:true \">[Logical-2] SQL&gt; alter database stop logical standby apply;\r\n\r\nDatabase altered.\r\n<\/pre>\n[Logical-2]&#8212;&gt; ALERT LOG<\/p>\n<pre class=\"lang:default decode:true \">Sat Jan 14 23:20:29 2017\r\nalter database stop logical standby apply\r\nSat Jan 14 23:20:30 2017\r\nLOGSTDBY Apply process AS02 server id=2 pid=67 OS id=19645 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGSTDBY Analyzer process AS00 server id=0 pid=65 OS id=19635 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGSTDBY Apply process AS01 server id=1 pid=66 OS id=19639 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGSTDBY Apply process AS04 server id=4 pid=69 OS id=19656 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGSTDBY Apply process AS05 server id=5 pid=72 OS id=19660 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGSTDBY Apply process AS03 server id=3 pid=68 OS id=19651 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGMINER: session#=1 (Logical_Standby$), preparer MS02 pid=62 OS id=19630 sid=143 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGMINER: session#=1 (Logical_Standby$), builder MS01 pid=60 OS id=19626 sid=24 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGMINER: session#=1 (Logical_Standby$), reader MS00 pid=57 OS id=19622 sid=83 stopped\r\nSat Jan 14 23:20:30 2017\r\nLOGSTDBY status: ORA-16128: User initiated stop apply successfully completed\r\nCompleted: alter database stop logical standby apply\r\n<\/pre>\n<p>4. We query the configuration from the broker.<\/p>\n<pre class=\"lang:default decode:true \">DGMGRL&gt; show configuration\r\n\r\nConfiguration - Broker _Configuration\r\n\r\n  Protection Mode: MaxPerformance\r\n  Databases:\r\n    primary - Primary database\r\n    standby - Physical standby database\r\n    logical - Logical standby database\r\n      Error: ORA-16810: multiple errors or warnings detected for the database\r\n\r\nFast-Start Failover: DISABLED\r\n\r\nConfiguration Status:\r\nERROR\r\n<\/pre>\n<p>5. We create a table under the TEST scheme to see if the change made from SQLPLUS is activated, although the configuration fails in the broker.<\/p>\n<pre class=\"lang:default decode:true \">[Primary-1] SQL&gt; create table test.locations_yedek as select * from hr.locations;\r\n\r\nTable created.\r\n\r\n[Primary-1] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nEMPLOYEES_YEDEK\r\nLOCATIONS_YEDEK\r\n<\/pre>\n<pre class=\"lang:default decode:true \">[Physical-1] SQL&gt; select table_name from dba_tables where owner='TEST';\r\n\r\nTABLE_NAME\r\n------------------------------\r\nEMPLOYEES_YEDEK\r\nLOCATIONS_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>6. We start Redo-Apply by connecting from SQLPLUS.<\/p>\n<pre class=\"lang:default decode:true \">[Logical-2] SQL&gt; alter database start logical standby apply immediate;\r\n\r\nDatabase altered.<\/pre>\n[Logical-2]&#8212;&gt;ALERT LOG<\/p>\n<pre class=\"lang:default decode:true \">Sat Jan 14 23:25:45 2017\r\nalter database start logical standby apply immediate\r\nALTER DATABASE START LOGICAL STANDBY APPLY (primary2)\r\nwith optional part\r\nIMMEDIATE\r\nAttempt to start background Logical Standby process\r\nSat Jan 14 23:25:45 2017\r\nLSP0 started with pid=57, OS id=22149 \r\nCompleted: alter database start logical standby apply immediate\r\nLOGMINER: Parameters summary for session# = 1\r\nLOGMINER: Number of processes = 3, Transaction Chunk Size = 201\r\nLOGMINER: Memory Size = 30M, Checkpoint interval = 150M\r\nLOGMINER: SpillScn 5599813, ResetLogScn 925702\r\nLOGMINER: summary for session# = 1\r\nLOGMINER: StartScn: 0 (0x0000.00000000)\r\nLOGMINER: EndScn: 0 (0x0000.00000000)\r\nLOGMINER: HighConsumedScn: 5599799 (0x0000.00557237)\r\nLOGMINER: session_flag: 0x1\r\nLOGMINER: Read buffers: 16\r\nLOGMINER: Memory LWM: limit 10M, LWM 24M, 80%\r\nLOGMINER: Memory Release Limit: 1M\r\nSat Jan 14 23:25:46 2017\r\nLOGMINER: session#=1 (Logical_Standby$), reader MS00 pid=60 OS id=22156 sid=26 started\r\nSat Jan 14 23:25:46 2017\r\nLOGMINER: session#=1 (Logical_Standby$), builder MS01 pid=62 OS id=22160 sid=142 started\r\nSat Jan 14 23:25:46 2017\r\nLOGMINER: session#=1 (Logical_Standby$), preparer MS02 pid=65 OS id=22164 sid=91 started\r\nLOGMINER: Begin mining logfile for session 1 thread 1 sequence 550, +DATA\/logical\/onlinelog\/group_6.274.932894839\r\nLOGMINER: Begin mining logfile for session 1 thread 2 sequence 308, +DATA\/logical\/onlinelog\/group_9.277.932894841\r\nSat Jan 14 23:25:46 2017\r\nLOGSTDBY Analyzer process AS00 started with server id=0 pid=66 OS id=22168\r\nSat Jan 14 23:25:46 2017\r\nLOGSTDBY Apply process AS03 started with server id=3 pid=69 OS id=22184\r\nSat Jan 14 23:25:46 2017\r\nLOGSTDBY Apply process AS04 started with server id=4 pid=72 OS id=22188\r\nSat Jan 14 23:25:46 2017\r\nLOGSTDBY Apply process AS05 started with server id=5 pid=76 OS id=22192\r\nSat Jan 14 23:25:46 2017\r\nLOGSTDBY Apply process AS02 started with server id=2 pid=68 OS id=22180\r\nSat Jan 14 23:25:46 2017\r\nLOGSTDBY Apply process AS01 started with server id=1 pid=67 OS id=22174\r\n<\/pre>\n<p>7. We check whether the table is created in Logical Standby.<\/p>\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\nLOCATIONS_YEDEK\r\n<\/pre>\n<p>8. We check whether the error is gone by querying the STATUS of the configuration from the broker.<\/p>\n<pre class=\"lang:default decode:true \">DGMGRL&gt; connect sys\/Passw0rd4\r\nConnected.\r\nDGMGRL&gt; show configuration\r\n\r\nConfiguration - Broker _Configuration\r\n\r\n  Protection Mode: MaxPerformance\r\n  Databases:\r\n    primary - Primary database\r\n    standby - Physical standby database\r\n    logical - Logical standby database\r\n\r\nFast-Start Failover: DISABLED\r\n\r\nConfiguration Status:\r\nSUCCESS\r\n<\/pre>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_41481\" class=\"pvc_stats all  \" data-element-id=\"41481\" 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 teach you to Changing Parameters From SQLPLUS While Broker Is Enabled. Changing parameters from SQLPLUS while the broker is ENABLE means that the broker does not work properly \/ cannot perform monitoring operations. We are testing. [Commands run from DGMGRL are all run from Primary-1 by connecting to DGMGRL] 1. &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_41481\" class=\"pvc_stats all  \" data-element-id=\"41481\" 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":41487,"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-41481","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>Changing Parameters From SQLPLUS While Broker Is Enabled - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In today&#039;s article, I will teach you to Changing Parameters From SQLPLUS While Broker Is Enabled. Changing parameters from SQLPLUS\" \/>\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\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Changing Parameters From SQLPLUS While Broker Is Enabled - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In today&#039;s article, I will teach you to Changing Parameters From SQLPLUS While Broker Is Enabled. Changing parameters from SQLPLUS\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-18T14:47:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"828\" \/>\n\t<meta property=\"og:image:height\" content=\"346\" \/>\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=\"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\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/\"},\"author\":{\"name\":\"Onur ARDAHANLI\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6\"},\"headline\":\"Changing Parameters From SQLPLUS While Broker Is Enabled\",\"datePublished\":\"2022-05-18T14:47:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/\"},\"wordCount\":168,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/\",\"name\":\"Changing Parameters From SQLPLUS While Broker Is Enabled - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg\",\"datePublished\":\"2022-05-18T14:47:09+00:00\",\"description\":\"In today's article, I will teach you to Changing Parameters From SQLPLUS While Broker Is Enabled. Changing parameters from SQLPLUS\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg\",\"width\":828,\"height\":346},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Changing Parameters From SQLPLUS While Broker Is Enabled\"}]},{\"@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":"Changing Parameters From SQLPLUS While Broker Is Enabled - Database Tutorials","description":"In today's article, I will teach you to Changing Parameters From SQLPLUS While Broker Is Enabled. Changing parameters from SQLPLUS","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\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/","og_locale":"en_US","og_type":"article","og_title":"Changing Parameters From SQLPLUS While Broker Is Enabled - Database Tutorials","og_description":"In today's article, I will teach you to Changing Parameters From SQLPLUS While Broker Is Enabled. Changing parameters from SQLPLUS","og_url":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/","og_site_name":"Database Tutorials","article_published_time":"2022-05-18T14:47:09+00:00","og_image":[{"width":828,"height":346,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg","type":"image\/jpeg"}],"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\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/"},"author":{"name":"Onur ARDAHANLI","@id":"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6"},"headline":"Changing Parameters From SQLPLUS While Broker Is Enabled","datePublished":"2022-05-18T14:47:09+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/"},"wordCount":168,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/","url":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/","name":"Changing Parameters From SQLPLUS While Broker Is Enabled - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg","datePublished":"2022-05-18T14:47:09+00:00","description":"In today's article, I will teach you to Changing Parameters From SQLPLUS While Broker Is Enabled. Changing parameters from SQLPLUS","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-13.jpg","width":828,"height":346},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/18\/changing-parameters-from-sqlplus-while-broker-is-enabled\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Changing Parameters From SQLPLUS While Broker Is Enabled"}]},{"@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\/41481","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=41481"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/41481\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/41487"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=41481"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=41481"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=41481"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}