{"id":43567,"date":"2026-04-02T08:31:00","date_gmt":"2026-04-02T06:31:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=43567"},"modified":"2026-04-03T14:37:18","modified_gmt":"2026-04-03T12:37:18","slug":"change-goldengate-default-extract-profile","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/","title":{"rendered":"Change GoldenGate Default Extract Profile"},"content":{"rendered":"\n<p>As part of a GoldenGate setup automation, changing the <code>Default<\/code> profile of your extracts and replicats seems like a good start if you don&#8217;t want to deal with custom profiles or changing each individual configuration.<\/p>\n\n\n\n<p>Unfortunately, there is no easy way to modify an existing profile from the <code>adminclient<\/code> (there is no <code>alter profile<\/code> command). The <code>Default<\/code> profile makes no exception, so you will have to use the REST API for this. In this blog, I will present two ways of doing it:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Updating the <code>Default<\/code> profile directly.<\/li>\n\n\n\n<li>Creating a custom profile, and setting it as <code>Default<\/code>.<\/li>\n<\/ul>\n\n\n\n<p>Using the Python client for GoldenGate I presented in another <a href=\"https:\/\/www.dbi-services.com\/blog\/production-ready-goldengate-rest-client-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">blog post<\/a>, you can easily create a session connecting to your GoldenGate setup and retrieve the existing configuration. For this, we will use the following methods \/ endpoints:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code><a href=\"https:\/\/docs.oracle.com\/en\/database\/goldengate\/core\/26\/oggra\/op-services-version-config-types-type-values-value-get.html\" target=\"_blank\" rel=\"noreferrer noopener\">retrieve_configuration_value<\/a><\/code> to get the current configuration (<code>GET \/services\/{version}\/config\/types\/{type}\/values\/{value}<\/code>)<\/li>\n\n\n\n<li><code><a href=\"https:\/\/docs.oracle.com\/en\/database\/goldengate\/core\/26\/oggra\/op-services-version-config-types-type-values-value-put.html\" target=\"_blank\" rel=\"noreferrer noopener\">replace_configuration_value<\/a><\/code> to update the profile (<code>PUT \/services\/{version}\/config\/types\/{type}\/values\/{value}<\/code>) <\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nfrom oggrestapi import OGGRestAPI\n\nogg_client=OGGRestAPI(\n\u00a0\u00a0\u00a0 url=&quot;https:\/\/vmogg:7810&quot;,\n\u00a0\u00a0\u00a0 username=&quot;ogg&quot;,\n\u00a0\u00a0\u00a0 password=&quot;ogg&quot;\n)\n\nogg_client.retrieve_configuration_value(\n\u00a0\u00a0\u00a0 value=&#039;ogg:managedProcessSettings:Default&#039;,\n\u00a0\u00a0\u00a0 type=&#039;ogg:managedProcessSettings&#039;)\n<\/pre><\/div>\n\n\n<p>This gives us the basic configuration of all new extracts and replicats in GoldenGate. Let&#8217;s see the default values:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&gt;&gt;&gt; ogg_client.retrieve_configuration_value(\n&nbsp;&nbsp;&nbsp; value='ogg:managedProcessSettings:Default',\n&nbsp;&nbsp;&nbsp; type='ogg:managedProcessSettings')\n{'$schema': 'ogg:managedProcessSettings', 'autoStart': {'enabled': False, 'delay': 0}, 'autoRestart': {'enabled': False, 'onSuccess': False, 'delay': 0, 'retries': 9, 'window': 60, 'disableOnFailure': True}}<\/code><\/pre>\n\n\n\n<p>Let&#8217;s have a look at the different parameters here:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>autoStart.enabled<\/code>: whether the process will start automatically after the Administration Server starts.<\/li>\n\n\n\n<li><code>autoStart.delay<\/code>: delay in seconds before starting the process.<\/li>\n\n\n\n<li><code>autoRestart.enabled<\/code>: whether to restart the process after it fails.<\/li>\n\n\n\n<li><code>autoRestart.onSuccess<\/code>: the process is only restarted if it fails.<\/li>\n\n\n\n<li><code>autoRestart.delay<\/code>: waiting time (in seconds) before attempting to restart a process once it fails.<\/li>\n\n\n\n<li><code>autoRestart.retries<\/code>: maximum number of retries before stopping restart attempts.<\/li>\n\n\n\n<li><code>autoRestart.window<\/code>: timeframe before GoldenGate will attempt to restart the process again.<\/li>\n\n\n\n<li><code>autoRestart.disableOnFailure<\/code>: if set to True, GoldenGate will disable the restart if it fails to restart within the <code>retries<\/code>\/<code>window<\/code> setting. You will have to start the process manually if this happens.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-updating-the-default-profile-directly\">Updating the <code>Default<\/code> profile directly<\/h2>\n\n\n\n<p>To update the <code>Default<\/code> profile, just create your own configuration and use the following example (based on the description given above) to push it to your GoldenGate deployment. Here, for instance, <code>autoStart<\/code> will be delayed by 30 seconds, and the process will try to restart every 5 minutes, and stop trying to restart after six retries. It will attempt to start again after two hours.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ogg_client.replace_configuration_value(\n&nbsp;&nbsp;&nbsp; value='ogg:managedProcessSettings:Default',\n&nbsp;&nbsp;&nbsp; type='ogg:managedProcessSettings',\n&nbsp;&nbsp;&nbsp; data={\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '$schema': 'ogg:managedProcessSettings',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'autoStart': {\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'enabled': True,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'delay': 30\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'autoRestart': {\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'enabled': True,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'retries': 6,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'delay': 300,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'window': 7200,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'onSuccess': False,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'disableOnFailure': False\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }\n&nbsp;&nbsp;&nbsp; }\n)<\/code><\/pre>\n\n\n\n<p>We can check by retrieving the configuration again.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Checking new configuration with the REST API\nogg_client.retrieve_configuration_value(\n&nbsp;&nbsp;&nbsp; value='ogg:managedProcessSettings:Default',\n&nbsp;&nbsp;&nbsp; type='ogg:managedProcessSettings')\n{'$schema': 'ogg:managedProcessSettings', 'autoStart': {'enabled': True, 'delay': 30}, 'autoRestart': {'enabled': True, 'retries': 6, 'delay': 300, 'window': 7200, 'onSuccess': False, 'disableOnFailure': False}}<\/code><\/pre>\n\n\n\n<p>Or you can check in the web UI in the <strong><em>Managed Process Profiles<\/em><\/strong> tab.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1535\" height=\"168\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44.png\" alt=\"\" class=\"wp-image-43717\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44.png 1535w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44-300x33.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44-1024x112.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44-768x84.png 768w\" sizes=\"auto, (max-width: 1535px) 100vw, 1535px\" \/><\/figure>\n<\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"959\" height=\"545\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.46.png\" alt=\"\" class=\"wp-image-43718\" style=\"width:800px\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.46.png 959w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.46-300x170.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.46-768x436.png 768w\" sizes=\"auto, (max-width: 959px) 100vw, 959px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-setting-a-custom-profile-to-default\">Setting a custom profile to <code>Default<\/code><\/h2>\n\n\n\n<p>If for some reason you would rather keep the <code>Default<\/code> profile and have a custom profile as default, you have to create a new profile first and set it as default. To do this, we use the <code><a href=\"https:\/\/docs.oracle.com\/en\/database\/goldengate\/core\/26\/oggra\/op-services-version-config-types-type-values-value-post.html\" target=\"_blank\" rel=\"noreferrer noopener\">create_configuration_value<\/a><\/code> method \/ endpoint, which is the same endpoint as before but with the <code>POST<\/code> verb. If we keep the same profile as in the previous example, here is the script to run. Only the method changes, as well as the value, where <code>Default<\/code> is changed with the name of your profile (<code>NewDefaultProfile<\/code>, here).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ogg_client.create_configuration_value(\n&nbsp;&nbsp;&nbsp; value='ogg:managedProcessSettings:NewDefaultProfile',\n&nbsp;&nbsp;&nbsp; type='ogg:managedProcessSettings',\n&nbsp;&nbsp;&nbsp; data={\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '$schema': 'ogg:managedProcessSettings',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'autoStart': {\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'enabled': True,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'delay': 30\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'autoRestart': {\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'enabled': True,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'retries': 6,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'delay': 300,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'window': 7200,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'onSuccess': False,\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'disableOnFailure': False\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }\n&nbsp;&nbsp;&nbsp; }\n)<\/code><\/pre>\n\n\n\n<p>After this, you need to do two things:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Create<\/strong> the <code>isDefault<\/code> <strong>flag for your new profile<\/strong>, and set it to <code>True<\/code>. This is done with the same <code>create_configuration_value<\/code> method, but on a different type called <code>ogg:configDataDescription<\/code>.<\/li>\n\n\n\n<li><strong>Update<\/strong> the <code>isDefault<\/code> <strong>flag for the <code>Default<\/code> profile<\/strong> to <code>False<\/code>. Since the property already exists, we will use the <code>replace_configuration_value<\/code> method.<\/li>\n<\/ul>\n\n\n\n<p>Here is how to do the creation of the flag:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ogg_client.create_configuration_value(\n&nbsp;&nbsp;&nbsp; value='ogg:managedProcessSettings:NewDefaultProfile',\n&nbsp;&nbsp;&nbsp; type='ogg:<span style=\"background-color: initial;font-family: inherit;font-size: inherit;text-align: initial;color: initial\">configDataDescription<\/span>',\n&nbsp;&nbsp;&nbsp; data={\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'isDefault': True\n    }\n)<\/code><\/pre>\n\n\n\n<p>And to update the <code>Default<\/code> profile:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ogg_client.replace_configuration_value(\n&nbsp;&nbsp;&nbsp; value='ogg:managedProcessSettings:Default',\n&nbsp;&nbsp;&nbsp; type='ogg:<span style=\"background-color: initial;font-family: inherit;font-size: inherit;text-align: initial;color: initial\">configDataDescription<\/span>',\n&nbsp;&nbsp;&nbsp; data={\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'isDefault': False\n    }\n)<\/code><\/pre>\n\n\n\n<p>From now on, any new extract or replicat will be assigned to this <code>NewDefaultProfile<\/code> !<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As part of a GoldenGate setup automation, changing the Default profile of your extracts and replicats seems like a good start if you don&#8217;t want to deal with custom profiles or changing each individual configuration. Unfortunately, there is no easy way to modify an existing profile from the adminclient (there is no alter profile command). [&hellip;]<\/p>\n","protected":false},"author":152,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[3787,59],"tags":[3804,979,3937,3935,3933,3930,328,3730,1775,3767],"type_dbi":[3823,3801,3938,3936,3934,3931,3740,3881,3932,3769],"class_list":["post-43567","post","type-post","status-publish","format-standard","hentry","category-goldengate","category-oracle","tag-26ai","tag-api","tag-autorestart","tag-autostart","tag-custom","tag-default","tag-goldengate","tag-ogg","tag-profile","tag-restapi","type-26ai","type-api","type-autorestart","type-autostart","type-custom","type-default","type-goldengate","type-ogg","type-profile","type-restapi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Change GoldenGate Default Extract Profile - dbi Blog<\/title>\n<meta name=\"description\" content=\"How to update GoldenGate default profile for extracts and replicats, to enable autostart and autorestart ?\" \/>\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\/change-goldengate-default-extract-profile\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Change GoldenGate Default Extract Profile\" \/>\n<meta property=\"og:description\" content=\"How to update GoldenGate default profile for extracts and replicats, to enable autostart and autorestart ?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-02T06:31:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-03T12:37:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1535\" \/>\n\t<meta property=\"og:image:height\" content=\"168\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Julien Delattre\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Julien Delattre\" \/>\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:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/\"},\"author\":{\"name\":\"Julien Delattre\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/764ab019cc9dec42655b4c6b9b8e474e\"},\"headline\":\"Change GoldenGate Default Extract Profile\",\"datePublished\":\"2026-04-02T06:31:00+00:00\",\"dateModified\":\"2026-04-03T12:37:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/\"},\"wordCount\":519,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/Screenshot-2026-04-01-at-16.55.44.png\",\"keywords\":[\"26ai\",\"api\",\"autorestart\",\"autostart\",\"custom\",\"default\",\"GoldenGate\",\"ogg\",\"profile\",\"restapi\"],\"articleSection\":[\"GoldenGate\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/\",\"name\":\"Change GoldenGate Default Extract Profile - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/Screenshot-2026-04-01-at-16.55.44.png\",\"datePublished\":\"2026-04-02T06:31:00+00:00\",\"dateModified\":\"2026-04-03T12:37:18+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/764ab019cc9dec42655b4c6b9b8e474e\"},\"description\":\"How to update GoldenGate default profile for extracts and replicats, to enable autostart and autorestart ?\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/Screenshot-2026-04-01-at-16.55.44.png\",\"contentUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/Screenshot-2026-04-01-at-16.55.44.png\",\"width\":1535,\"height\":168},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/change-goldengate-default-extract-profile\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Change GoldenGate Default Extract Profile\"}]},{\"@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\\\/764ab019cc9dec42655b4c6b9b8e474e\",\"name\":\"Julien Delattre\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"caption\":\"Julien Delattre\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/juliendelattre\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Change GoldenGate Default Extract Profile - dbi Blog","description":"How to update GoldenGate default profile for extracts and replicats, to enable autostart and autorestart ?","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\/change-goldengate-default-extract-profile\/","og_locale":"en_US","og_type":"article","og_title":"Change GoldenGate Default Extract Profile","og_description":"How to update GoldenGate default profile for extracts and replicats, to enable autostart and autorestart ?","og_url":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/","og_site_name":"dbi Blog","article_published_time":"2026-04-02T06:31:00+00:00","article_modified_time":"2026-04-03T12:37:18+00:00","og_image":[{"width":1535,"height":168,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44.png","type":"image\/png"}],"author":"Julien Delattre","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Julien Delattre","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/"},"author":{"name":"Julien Delattre","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"headline":"Change GoldenGate Default Extract Profile","datePublished":"2026-04-02T06:31:00+00:00","dateModified":"2026-04-03T12:37:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/"},"wordCount":519,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44.png","keywords":["26ai","api","autorestart","autostart","custom","default","GoldenGate","ogg","profile","restapi"],"articleSection":["GoldenGate","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/","url":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/","name":"Change GoldenGate Default Extract Profile - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44.png","datePublished":"2026-04-02T06:31:00+00:00","dateModified":"2026-04-03T12:37:18+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"description":"How to update GoldenGate default profile for extracts and replicats, to enable autostart and autorestart ?","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/Screenshot-2026-04-01-at-16.55.44.png","width":1535,"height":168},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/change-goldengate-default-extract-profile\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Change GoldenGate Default Extract Profile"}]},{"@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\/764ab019cc9dec42655b4c6b9b8e474e","name":"Julien Delattre","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","caption":"Julien Delattre"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/juliendelattre\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/43567","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\/152"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=43567"}],"version-history":[{"count":6,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/43567\/revisions"}],"predecessor-version":[{"id":43800,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/43567\/revisions\/43800"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=43567"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=43567"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=43567"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=43567"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}