{"id":6951,"date":"2018-03-29T10:42:36","date_gmt":"2018-03-29T08:42:36","guid":{"rendered":"https:\/\/www.carajandb.com\/?p=6951"},"modified":"2018-03-29T10:44:51","modified_gmt":"2018-03-29T08:44:51","slug":"data-guard-is-easy","status":"publish","type":"post","link":"https:\/\/carajandb.com\/en\/2018\/03\/29\/data-guard-is-easy\/","title":{"rendered":"Data Guard is easy"},"content":{"rendered":"<h2>Data Guard is easy!<\/h2>\n<p>Every Oracle database with a certain value for the business should be protected with a standby database. How you can set up a standby environment for Standard Edition Two will be covered in a dfiferent blog. Today the goal is to create a Data Guard configuration fast, easy and repeatable.<br \/>\n<!--more-->This blog will not cover the generic usage of Data Guard and the protection modes. There are other blogs available like this one: <a href=\"https:\/\/carajandb.com\/en\/blog\/2015\/dataguard-protection-modes-en\">https:\/\/carajandb.com\/en\/blog\/2015\/dataguard-protection-modes-en<\/a>.<br \/>\nThe configuration that I&#8217;m using contains two databases on two servers:<br \/>\nPrimary Database:<br \/>\nServer: wagner<br \/>\nDatabasename: RICHARD<br \/>\nDB-Unique-Name: RICHARD_W<\/p>\n<p>Standby Database:<br \/>\nServer: strauss<br \/>\nDatabasename: RICHARD<br \/>\nDB-Uniquen-Name: RICHARD_S<\/p>\n<p>Database-Version: 12.2.0<\/p>\n<p>This this example I&#8217;m using Oracle Managed Files (OMF). Ther&#8217;s another blog on the details and restrictions if you are going to use OMF and Multitenant (<a href=\"https:\/\/carajandb.com\/en\/blog\/2016\/multitenant-in-a-dataguard-environment\">https:\/\/carajandb.com\/en\/blog\/2016\/multitenant-in-a-dataguard-environment<\/a>).<\/p>\n<h3>Primary Database<\/h3>\n<p>To ensure that all directories are correctly set you need to set the parameter [inlinecode]db_unique_name[\/inlinecode] before creating the database because otherwise the data files will be in the wrong directory. And for me it&#8217;s helpful to have a symbolic link in the admin directory like follows:<\/p>\n<pre>cd \/u01\/app\/oracle\/admin\r\nmkdir -p RICHARD\/config RICHARD\/adump RICHARD\/dpdump RICHARD\/spfile RICHARD\/scripts RICHARD\/xdb_wallet\r\nln -s RICHARD RICHARD_W\r\nmkdir -p \/u02\/oradata\/RICHARD\/config\r\nmkdir -p \/u03\/orabackup\/RICHARD\/config\r\n<\/pre>\n<p>Now the database will be configured for data guard.<\/p>\n<pre>sqlplus \/ as sysdba\r\nALTER SYSTEM SET dg_broker_config_file1='\/u02\/oradata\/RICHARD\/config\/dg_config1.cfg';\r\nALTER SYSTEM SET dg_broker_config_file2='\/u03\/orabackup\/RICHARD\/config\/dg_config2.cfg';\r\nALTER DATABASE FORCE LOGGING;\r\nALTER SYSTEM SET log_archive_format='%t_%s_%r.arc' scope=spfile;\r\nALTER SYSTEM SET \"_query_on_physical\"=false SCOPE=spfile;\r\nSHUTDOWN IMMEDIATE\r\nSTARTUP MOUNT;\r\nALTER DATABASE ARCHIVELOG;\r\nALTER DATABASE FLASHBACK ON;\r\nALTER DATABASE OPEN;\r\n<\/pre>\n<p>CAUTION: The parameter [inlinecode]_query_on_physical[\/inlinecode] is not supported and shouldn&#8217;t be used due to Oracle&#8217;s recommendation. But it will avoid that the standby database will be opened red only while the apply process is still running. And that requires the Active Data Guard License.<\/p>\n<p>Now it&#8217;s time to create the Standby redologs. Oracle recommends that they should have the same size as the online redolog and the number should be one more than the online redologs. Most of the time I&#8217;m working with three online redologs per thread so I need 4 standby redlogs per thread.<\/p>\n<pre>ALTER DATABASE ADD STANDBY LOGFILE GROUP 11 size 200M;\r\nALTER DATABASE ADD STANDBY LOGFILE GROUP 12 size 200M;\r\nALTER DATABASE ADD STANDBY LOGFILE GROUP 13 size 200M;\r\nALTER DATABASE ADD STANDBY LOGFILE GROUP 14 size 200M;\r\n<\/pre>\n<p>The primary database is no preparred for data guard.<\/p>\n<h4>Oracle Net<\/h4>\n<p>The next step will be to create the proper Oracle Net configuration:<br \/>\nThe listener needs a static configuration for the database because otherwiwse the restart of the instance will end up in an RMAN disconnect during database duplication. A second entry is needed for the data guard broker.<br \/>\nAs I try to script as many steps as possible I&#8217;m always using shell with stdin and stdout redirection.<\/p>\n<pre>cat &lt; $ORACLE_HOME\/network\/admin\/listener.ora\r\nSID_LIST_LISTENER =\r\n   (SID_LIST =\r\n      (SID_DESC =\r\n         (GLOBAL_DBNAME = RICHARD_W.carajandb.intra)\r\n         (ORACLE_HOME=\/u01\/app\/oracle\/product\/12.2.0\/dbhome_1)\r\n         (SID_NAME = RICHARD))\r\n   (SID_DESC =\r\n      (GLOBAL_DBNAME = RICHARD_W_DGMGRL.carajandb.intra)\r\n      (ORACLE_HOME=\/u01\/app\/oracle\/product\/12.2.0\/dbhome_1)\r\n      (SID_NAME = RICHARD))\r\n   )\r\nEOCAT\r\n\r\nlsnrctl stop\r\nlsnrctl start\r\n<\/pre>\n<p>After hte listener has been configured the TNS-Aliases are going to be defined.<br \/>\nI&#8217;m using two aliases for every database: one for the normal operating using a service_name and one for the duplication using a SID.<\/p>\n<pre>cat &lt; $ORACLE_HOME\/network\/admin\/tnsnames.ora\r\ncat &lt; $ORACLE_HOME\/network\/admin\/tnsnames.ora\r\nRICHARD_W.carajandb.intra =\r\n  (DESCRIPTION =\r\n    (ADDRESS = (PROTOCOL = TCP)(HOST = wagner)(PORT = 1521))\r\n    (CONNECT_DATA =\r\n      (SERVICE_NAME = RICHARD_W.carajandb.intra)\r\n    )\r\n  )\r\n\r\nRICHARD_S.carajandb.intra =\r\n  (DESCRIPTION =\r\n    (ADDRESS = (PROTOCOL = TCP)(HOST = strauss)(PORT = 1521))\r\n    (CONNECT_DATA =\r\n      (SERVICE_NAME = RICHARD_S.carajandb.intra)\r\n    )\r\n  )\r\n\r\nRICHARD_wagner.carajandb.intra =\r\n  (DESCRIPTION =\r\n    (ADDRESS = (PROTOCOL = TCP)(HOST = wagner)(PORT = 1521))\r\n    (CONNECT_DATA =\r\n      (SID = RICHARD)\r\n    )\r\n  )\r\n\r\nRICHARD_strauss.carajandb.intra =\r\n  (DESCRIPTION =\r\n    (ADDRESS = (PROTOCOL = TCP)(HOST = strauss)(PORT = 1521))\r\n    (CONNECT_DATA =\r\n      (SID = RICHARD)\r\n    )\r\n  )\r\nEOCAT\r\n<\/pre>\n<p>Finally sqlnet.ora will be changed. This step is only for lazy admins as I&#8217;m going to add the default domain.<\/p>\n<pre>echo \"NAMES.DEFAULT_DOMAIN=carajandb.intra\" &gt; $ORACLE_HOME\/network\/admin\/sqlnet.ora\r\n<\/pre>\n<p>The tnsnames.ora and sqlnet.ora can be copied to the standby server.<\/p>\n<h4>Parameterfile<\/h4>\n<p>Very often you see that a parameter file is being created from the spfile of the primary database and than modified to reflect the parameters of the standby database. I found this cumbersome because the correct spfile will be created automatically during the RMAN duplication procedure. That&#8217;s why I&#8217;m using a dummy init.ora file with some basic configuration just to start the instance for the RMAN duplicate.<br \/>\nOne of the advantages of the method is that I can use this file on both servers so it helps if you need to recreate the standby database regardless if there has been a switch in the meantime.<\/p>\n<p>cat &lt; \/u01\/app\/oracle\/admin\/RICHARD\/config\/initdup.ora<br \/>\n*.compatible=&#8217;12.2.0.1&#8242;<br \/>\n*.db_block_size=8192<br \/>\n*.db_domain=&#8217;carajandb.intra&#8217;<br \/>\n*.db_name=&#8217;RICHARD&#8217;<br \/>\n*.diagnostic_dest=&#8217;\/u01\/app\/oracle&#8217;<br \/>\n*.log_archive_format=&#8217;%t_%s_%r.arc&#8217;<br \/>\n*.pga_aggregate_target=512M<br \/>\n*.remote_login_passwordfile=&#8217;EXCLUSIVE&#8217;<br \/>\n*.sga_target=2000M<br \/>\n*.undo_tablespace=&#8217;UNDOTBS1&#8242;<br \/>\nEOCAT<\/p>\n<p>This file can now be copied to the standby server.<\/p>\n<h4>RMAN Script<\/h4>\n<p>The final script will be for rman duplicate. Be careful because the both servers need different scripts.<\/p>\n<pre>cat &lt; \/u01\/app\/oracle\/admin\/RICHARD\/config\/duplicate.rcv\r\nconnect target sys\/manager@RICHARD_S\r\nconnect auxiliary sys\/manager@RICHARD_wagner\r\nrun{\r\nallocate channel prmy1 type disk;\r\nallocate auxiliary channel stby1 type disk;\r\nDUPLICATE TARGET DATABASE\r\n  FOR STANDBY\r\n  FROM ACTIVE DATABASE\r\n  DORECOVER\r\n  SPFILE\r\n  PARAMETER_VALUE_CONVERT 'RICHARD_S','RICHARD_W','strauss','wagner'\r\n  SET \"db_unique_name\"=\"RICHARD_W\"\r\n  SET \"instance_number\"=\"1\"\r\n  NOFILENAMECHECK;\r\n}\r\nEOCAT\r\n<\/pre>\n<p>We won&#8217;t use this file yet because it only works if RICHAR_W is the standby database.<\/p>\n<h3>Standby Database<\/h3>\n<p>I assume that there is no directory structure for any database yet on the standby server but the software is already installed.<br \/>\nSo first we need to create some directoriers:<\/p>\n<pre>mkdir -p \/u01\/app\/oracle\/admin\r\ncd \/u01\/app\/oracle\/admin\r\n\r\nmkdir -p RICHARD\/adump RICHARD\/dpdump RICHARD\/pfile RICHARD\/scripts RICHARD\/xdbwallet RICHARD\/config \/u02\/oradata\/RICHARD\/config \/u03\/orabackup\/RICHARD\/config\r\nln -s RICHARD RICHARD_S\r\n<\/pre>\n<p>Now the environment variables for the database can be set a usual.<\/p>\n<pre>echo \"RICHARD:\/u01\/app\/oracle\/product\/12.2.0\/dbhome_1:N\" &gt;&gt; \/etc\/oratab\r\n\r\nORACLE_SID=RICHARD\r\nORAENV_ASK=NO\r\n. oraenv\r\nunset ORAENV_ASK\r\n<\/pre>\n<h4>Oracle Net<\/h4>\n<p>Both tnsnames.ora and sqlnet.ora should already exists because we copied them from the primary server. But the listener.ora needs to be created.<\/p>\n<pre>cat &lt; $ORACLE_HOME\/network\/admin\/listener.ora\r\nSID_LIST_LISTENER =\r\n   (SID_LIST =\r\n      (SID_DESC =\r\n         (GLOBAL_DBNAME = RICHARD_S.carajandb.intra)\r\n         (ORACLE_HOME=\/u01\/app\/oracle\/product\/12.2.0\/dbhome_1)\r\n         (SID_NAME = RICHARD))\r\n      (SID_DESC =\r\n         (GLOBAL_DBNAME = RICHARD_S_DGMGRL.carajandb.intra)\r\n         (ORACLE_HOME=\/u01\/app\/oracle\/product\/12.2.0\/dbhome_1)\r\n         (SID_NAME = RICHARD))\r\n)\r\nEOCAT\r\nlsnrctl stop\r\nlsnrctl start\r\n<\/pre>\n<h4>RMAN Scipt<\/h4>\n<p>Last but not least we need to create the rman duplicate script as the init.ora has already be copied from the primary server.<\/p>\n<pre>cat &lt; \/u01\/app\/oracle\/admin\/RICHARD\/config\/duplicate.rcv\r\nconnect target sys\/manager@RICHARD_W\r\nconnect auxiliary sys\/manager@RICHARD_strauss\r\nrun{\r\nallocate channel prmy1 type disk;\r\nallocate auxiliary channel stby1 type disk;\r\nDUPLICATE TARGET DATABASE\r\n  FOR STANDBY\r\n  FROM ACTIVE DATABASE\r\n  DORECOVER\r\n  SPFILE\r\n  PARAMETER_VALUE_CONVERT 'RICHARD_W','RICHARD_S','wagner','strauss'\r\n  SET \"db_unique_name\"=\"RICHARD_S\"\r\n  SET \"instance_number\"=\"1\"\r\n  NOFILENAMECHECK;\r\n}\r\nEOCAT\r\n<\/pre>\n<p>So we are done with the preparation. This whole configuration needs to be created only once and you can start with the next step, whenever you need to recreate the standby database.<\/p>\n<h3>RMAN Duplicate<\/h3>\n<p>We can now start the standby instance with the dummy init.ora and run the rman duplicate.<\/p>\n<pre>sqlplus \/ as sysdba\r\nstartup nomount pfile='\/u01\/app\/oracle\/admin\/RICHARD\/config\/initdup.ora'\r\nexit\r\n\r\nrman @\/u01\/app\/oracle\/admin\/RICHARD\/config\/duplicate.rcv\r\n<\/pre>\n<p>HINT: Before you start the rman duplicate you need to ensure that the connects to the target and auxiliary (standby) works from both servers.<\/p>\n<h3>Data Guard Broker<\/h3>\n<p>Now it&#8217;s to,e to configure the data guard broker. The broker process must be startet first and in this step we need to active flashback database as that feature will be disabled after the rman duplication.<br \/>\nStandby Database:<\/p>\n<pre>sqlplus \/ as sysdba\r\nALTER DATABASE FLASHBACK ON;\r\nALTER SYSTEM SET dg_broker_start=true;\r\n<\/pre>\n<p>Now we swith over to the primary server start the broker process and create the configuration:<\/p>\n<pre>sqlplus \/ as sysdba\r\nALTER DATABASE FLASHBACK ON;\r\nEXIT;\r\n\r\ndgmgrl \/\r\nCREATE CONFIGURATION 'RICHARD_DG' AS\r\nPRIMARY DATABASE IS 'RICHARD_W'\r\nCONNECT IDENTIFIER IS 'RICHARD_W.carajandb.intra';\r\n\r\nADD DATABASE 'RICHARD_S' AS\r\nCONNECT IDENTIFIER IS 'RICHARD_S.carajandb.intra'\r\nMAINTAINED AS PHYSICAL;\r\n\r\nEDIT DATABASE 'RICHARD_W' SET PROPERTY StandbyFileManagement='AUTO';\r\nEDIT DATABASE 'RICHARD_S' SET PROPERTY StandbyFileManagement='AUTO';\r\nEDIT DATABASE 'RICHARD_W' SET PROPERTY 'NetTimeout'=60;\r\nEDIT DATABASE 'RICHARD_S' SET PROPERTY 'NetTimeout'=60;\r\nEDIT DATABASE 'RICHARD_W' SET PROPERTY 'LogXptMode'='SYNC';\r\nEDIT DATABASE 'RICHARD_S' SET PROPERTY 'LogXptMode'='SYNC';\r\nEDIT DATABASE 'RICHARD_W' SET PROPERTY dbDisplayName = 'RICHARD_W.carajandb.intra';\r\nEDIT DATABASE 'RICHARD_S' SET PROPERTY dbDisplayName = 'RICHARD_S.carajandb.intra';\r\nEDIT CONFIGURATION SET PROTECTION MODE AS MAXAVAILABILITY;\r\n\r\nENABLE CONFIGURATION\r\n<\/pre>\n<p>Done!<br \/>\nTip: At this point you should take a walk and grap a cup of coffee!<br \/>\nWhy? Because it can take some minutes before the synchronisazion between the databases has finished. And you should wait with the command &#8220;SHOW CONFIGURATION&#8221; to not get worried in the meantime.<br \/>\nAfter you finished your coffee the configuration should look like this:<\/p>\n<pre>DGMGRL&gt; show configuration\r\n\r\nConfiguration - RICHARD_DG\r\n\r\nProtection Mode: MaxAvailability\r\nMembers:\r\nRICHARD_W - Primary database\r\nRICHARD_S - Physical standby database\r\n\r\nFast-Start Failover: DISABLED\r\n\r\nConfiguration Status:\r\nSUCCESS (status updated 28 seconds ago)\r\n<\/pre>\n<h3>Conclusion<\/h3>\n<p>Using this scripts I&#8217;m always able to recreate the standby databas with minimum efford regardless where the primary database is currently running.<br \/>\nJust one last hint: please avoid the use of a db_unique_name which has a kind of qualification, like DBNAME_STANDBY or similar. You should better use the name of the data center (e.g. SF \/ LA) or a number (S1 \/ S2) to identify the locations.<\/p>\n<p>Good Luck<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Data Guard is easy! Every Oracle database with a certain value for the business should be protected with a standby database. How you can set up a standby environment for Standard Edition Two will be covered in a dfiferent blog. Today the goal is to create a Data Guard configuration fast, easy and repeatable.<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_crdt_document":"","_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[406],"tags":[281,416,166],"class_list":["post-6951","post","type-post","status-publish","format-standard","hentry","category-oracle-en","tag-data-guard-2","tag-data-guard-broker","tag-standby"],"acf":{"occupation":"Write the Occupation of the Person","person_can-be-speaker":true,"person_is-team":true,"person_related-user-account":null,"person_ordering-number":50,"publication_speakers":null,"publication_content-language":["de"],"publication_files":null,"publication_event":"","publication_date":null},"spectra_custom_meta":{"_vc_post_settings":["a:1:{s:10:\"vc_grid_id\";a:0:{}}"],"_edit_lock":["1528885564:3"],"_edit_last":["3"],"_yoast_wpseo_content_score":["90"],"layout_header":["light"],"_layout_header":["field_5a48111185e5f"],"layout_background":[""],"_layout_background":["field_5a481193c0995"],"layout_hide_services":["0"],"_layout_hide_services":["field_5a4811c5c0996"],"layout_show-author-box":["1"],"_layout_show-author-box":["field_5a64ee9cc6490"],"layout_show-categories-tags":["1"],"_layout_show-categories-tags":["field_5a64eee4c6491"],"blogpost_related-publications":[""],"_blogpost_related-publications":["field_5a480debdac62"],"blogpost_related-files":[""],"_blogpost_related-files":["field_5a480f377db29"],"_yoast_wpseo_primary_category":[""],"_yoast_wpseo_focuskw_text_input":["Data Guard"],"_yoast_wpseo_focuskw":["Data Guard"],"_yoast_wpseo_linkdex":["71"],"rank_math_primary_category":[""],"rank_math_focus_keyword":["Data Guard"],"rank_math_news_sitemap_robots":["index"],"rank_math_robots":["a:1:{i:0;s:5:\"index\";}"],"rank_math_internal_links_processed":["1"],"astra_style_timestamp_css":["1773702735"],"wpil_sync_report3":["1"],"wpil_links_inbound_internal_count":["0"],"wpil_links_inbound_internal_count_data":["eJxLtDKwqq4FAAZPAf4="],"wpil_links_outbound_internal_count":["2"],"wpil_links_outbound_internal_count_data":["eJzVUrtuwzAM\/BftjmznCeYX+hg7CrQk2GpkypDlPhDk30vFQZsOHVogQzeRON4dj0Ko4eig3D9CtQbxNDiv7oOxXt05OgiolnAcYQvCc6mcEfsMHmEJYope8Gu7AdGlNICU0XqcSHd1Wa8WGiM+I5lmoUMvLcnGh1bWZbWWBhO2E0ZTDDEkq5MLVPSsOhaWMueKKcOY8rNm+p95M2IHwlGykZD9NFDN88N5\/oELJkAeDvFWbnNwaIw1qnlXg59aR9lIOXvzQWMeOauD0IG90rxaeYn1tXPjYKPS0WKynxlXFW82KpxSyLDrdoqoD47aq4vkNruavFXf0PVF5Cz8lub+yXFOfz75bv3LEDeyn3xyvDhSKhwVWHylaunFxUD9JZXb3f6mtv\/jJzh9AJDXUig="],"wpil_links_outbound_external_count":["0"],"wpil_links_outbound_external_count_data":["eJxLtDKwqq4FAAZPAf4="],"wpil_sync_report2_time":["2024-08-27T11:47:25+00:00"],"_uag_css_file_name":["uag-css-6951.css"],"_uag_page_assets":["a:9:{s:3:\"css\";s:25301:\".uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}\n.uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.wp-block-uagb-icon-list-child{padding:0;transition:all 0.2s;display:inline-flex;color:#3a3a3a;align-items:center;text-decoration:none;box-shadow:none}.wp-block-uagb-icon-list-child span.uagb-icon-list__source-wrap{display:block;align-items:center}.uagb-icon-list__source-wrap svg{display:block}.uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}\n.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}.wp-block-uagb-icon-list-child .uagb-icon-list__label{word-break:break-word}\n.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 20px;height: 20px;font-size: 20px;color: var(--ast-global-color-0);fill: var(--ast-global-color-0);}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{border-color: #28368200;padding: 0px;border-radius: 100px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__label{font-size: 20px;text-decoration: !important;line-height: 1.5em;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child{text-decoration: !important;font-size: 20px;line-height: 1.5em;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-wrap{margin-right: 15px;}.uagb-block-d4bae936.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{fill: var(--ast-global-color-0) !important;color: var(--ast-global-color-0) !important;}.uagb-block-d4bae936.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-d4bae936.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-d4bae936.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-375284f0.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-375284f0.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-dfc53cb7.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-dfc53cb7.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 20px;height: 20px;font-size: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 20px;height: 20px;font-size: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 20px;height: 20px;font-size: 20px;color: var(--ast-global-color-0);fill: var(--ast-global-color-0);}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{border-color: #28368200;padding: 0px;border-radius: 100px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__label{font-size: 20px;text-decoration: !important;line-height: 1.5em;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child{text-decoration: !important;font-size: 20px;line-height: 1.5em;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-wrap{margin-right: 15px;}.uagb-block-05f838d1.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{fill: var(--ast-global-color-0) !important;color: var(--ast-global-color-0) !important;}.uagb-block-05f838d1.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-05f838d1.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-05f838d1.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-66131845.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-66131845.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-b2264876.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-b2264876.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 20px;height: 20px;font-size: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 20px;height: 20px;font-size: 20px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}}.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:0.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}\n.wp-block-uagb-container.uagb-block-add44f6f .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-add44f6f .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-add44f6f .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-add44f6f .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-add44f6f .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-add44f6f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-block-add44f6f{box-shadow: 0px 0px   #00000070 ;padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 20px;column-gap: 20px;max-width: 100% !important;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 25px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 25px;height: 25px;font-size: 25px;color: var(--ast-global-color-0);fill: var(--ast-global-color-0);}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{border-color: #28368200;padding: 0px;border-radius: 100px;border-width: 0px;align-self: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__label{font-size: 20px;text-decoration: !important;line-height: 1.5em;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child{text-decoration: !important;font-size: 20px;line-height: 1.5em;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-wrap{margin-right: 20px;}.uagb-block-05f838d1.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{fill: var(--ast-global-color-0) !important;color: var(--ast-global-color-0) !important;}.uagb-block-05f838d1.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-05f838d1.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-05f838d1.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-66131845.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-66131845.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-bb602a54.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-bb602a54.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-b2264876.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-b2264876.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-add44f6f{width: 100%;}.wp-block-uagb-container.uagb-block-add44f6f{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;align-items: stretch;max-width:  !important;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 25px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 25px;height: 25px;font-size: 25px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-add44f6f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-block-add44f6f{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;align-items: stretch;flex-wrap: wrap;max-width: 100% !important;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__source-image{width: 25px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 25px;height: 25px;font-size: 25px;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-51f78a84.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 0px;}}.wp-block-uagb-container.uagb-block-e8cad69e .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-e8cad69e .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-e8cad69e .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-e8cad69e .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-e8cad69e .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-e8cad69e{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-block-e8cad69e{box-shadow: 0px 0px   #00000070 ;padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 20px;column-gap: 20px;max-width: 100% !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-e8cad69e{width: 100%;}.wp-block-uagb-container.uagb-block-e8cad69e{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;max-width:  !important;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-e8cad69e{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-block-e8cad69e{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;flex-wrap: wrap;max-width: 100% !important;}}.wp-block-uagb-container.uagb-block-0921a5e7 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-0921a5e7 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-0921a5e7 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-0921a5e7 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-0921a5e7 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-0921a5e7{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-block-0921a5e7{box-shadow: 0px 0px   #00000070 ;padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 20px;column-gap: 20px;max-width: 100% !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-0921a5e7{width: 100%;}.wp-block-uagb-container.uagb-block-0921a5e7{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;max-width:  !important;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-0921a5e7{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-block-0921a5e7{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;flex-wrap: wrap;max-width: 100% !important;}}\";s:2:\"js\";s:0:\"\";s:18:\"current_block_list\";a:14:{i:0;s:15:\"core\/categories\";i:1;s:17:\"core\/latest-posts\";i:2;s:14:\"core\/tag-cloud\";i:3;s:14:\"core\/paragraph\";i:4;s:11:\"core\/search\";i:5;s:12:\"core\/heading\";i:6;s:9:\"core\/list\";i:7;s:14:\"core\/list-item\";i:8;s:14:\"uagb\/icon-list\";i:9;s:20:\"uagb\/icon-list-child\";i:10;s:10:\"core\/group\";i:11;s:14:\"uagb\/container\";i:12;s:10:\"core\/image\";i:13;s:17:\"uagb\/loop-builder\";}s:8:\"uag_flag\";b:1;s:11:\"uag_version\";s:10:\"1776035917\";s:6:\"gfonts\";a:1:{s:7:\"Default\";a:2:{s:10:\"fontfamily\";s:7:\"Default\";s:12:\"fontvariants\";a:0:{}}}s:10:\"gfonts_url\";s:77:\"https:\/\/fonts.googleapis.com\/css?family=Default&subset=latin&display=fallback\";s:12:\"gfonts_files\";a:0:{}s:14:\"uag_faq_layout\";b:0;}"]},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"Johannes Ahrends","author_link":"https:\/\/carajandb.com\/en\/author\/9aa6cdb2095bd409\/"},"uagb_comment_info":8,"uagb_excerpt":"Data Guard is easy! Every Oracle database with a certain value for the business should be protected with a standby database. How you can set up a standby environment for Standard Edition Two will be covered in a dfiferent blog. Today the goal is to create a Data Guard configuration fast, easy and repeatable.","_links":{"self":[{"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/posts\/6951","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/comments?post=6951"}],"version-history":[{"count":3,"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/posts\/6951\/revisions"}],"predecessor-version":[{"id":6957,"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/posts\/6951\/revisions\/6957"}],"wp:attachment":[{"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/media?parent=6951"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/categories?post=6951"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/carajandb.com\/en\/wp-json\/wp\/v2\/tags?post=6951"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}