{"id":4297,"date":"2018-10-11T08:00:29","date_gmt":"2018-10-11T11:00:29","guid":{"rendered":"https:\/\/www.dbarj.com.br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/"},"modified":"2018-10-11T08:00:29","modified_gmt":"2018-10-11T11:00:29","slug":"howto-backup-oracle-cloud-infrastructure-metadata","status":"publish","type":"post","link":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/","title":{"rendered":"Howto backup Oracle Cloud Infrastructure metadata"},"content":{"rendered":"<p>As of today (<strong>October 2018<\/strong>), there is still no internal capability in Oracle Cloud Infrastructure to backup the metadata of all the objects you have (like computes, volumes, network, users, etc). This would be indeed a great feature and prefer to believe that Oracle is working to deploy it.<\/p>\n<p>Meanwhile, I have some customers that work with OCI and have the requisite to take backups of all cloud metadata information in case someone accidentally delete an important, like a security list rule, policy privilege or a compute tag, just to mention a few.<\/p>\n<p>As the steps to manually backup all the objects metadata are not trivial, I&#8217;ve developed a script that will do all the work.<\/p>\n<p>The script is public available at my <strong>github<\/strong> oci-scripts page: <strong><a href=\"https:\/\/github.com\/dbarj\/oci-scripts\/blob\/master\/oci_json_export.sh\" target=\"_blank\" rel=\"noopener noreferrer\">oci_json_export.sh<\/a><\/strong><\/p>\n<h3>How does it work?<\/h3>\n<p>The \u201coci_json_export.sh\u201d is a public tool that extracts all the Oracle Cloud Infrastructure information into json files and compact in a single zip output.<\/p>\n<ul>\n<li>It uses <strong>oci-cli<\/strong> and <strong>jq<\/strong> in the backend.<\/li>\n<li>Each execution of <strong>oci_json_export.sh<\/strong> may take several minutes, however, it will not impact the OCI performance.<\/li>\n<li>Execution time is long since <strong>oci_json_export.sh<\/strong> makes use of more than a hundred single-threaded sequentially-executed <strong>oci-cli<\/strong> calls to produce its output.<\/li>\n<li>For more information about <strong>oci_json_export.sh<\/strong>, refer to content and links at <a href=\"https:\/\/github.com\/dbarj\/oci-scripts\/blob\/master\/oci_json_export.sh\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/github.com\/dbarj\/oci-scripts\/blob\/master\/oci_json_export.sh<\/a><\/li>\n<\/ul>\n<h3>Pre-requisites<\/h3>\n<p>As already said,\u00a0<strong>oci_json_export.sh<\/strong> depends that you have a <strong>bash shell, oci-cli <\/strong>and<strong> jq<\/strong>.<\/p>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h4><span style=\"text-decoration: underline;\">Bash Shell<\/span><\/h4>\n<p>Bash is the GNU Project&#8217;s shell. It\u2019s available on most UNIX operating systems, like Linux and Mac.<\/p>\n<h4><span style=\"text-decoration: underline;\">OCI-CLI<\/span><\/h4>\n<p>OCI-CLI is the command line interface for Oracle Cloud Infrastructure. Download and setup instructions are available at: <a href=\"https:\/\/github.com\/oracle\/oci-cli\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/github.com\/oracle\/oci-cli<\/a>. For MAC\/Linux, you can install running:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[user@localhost sh]$ bash -c \"$(curl -L https:\/\/raw.githubusercontent.com\/oracle\/oci-cli\/master\/scripts\/install\/install.sh)\"<\/pre>\n<p>After oci-cli is installed, you must do a one-time configuration. Follow the steps of this article to configure it securely with a read-only account: <a href=\"https:\/\/www.dbarj.com.br\/en\/2018\/09\/creating-a-read-only-user-in-oracle-cloud-infrastructure\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/www.dbarj.com.br\/en\/2018\/09\/creating-a-read-only-user-in-oracle-cloud- infrastructure\/<\/a><\/p>\n<h4><span style=\"text-decoration: underline;\">JQ<\/span><\/h4>\n<p>JQ stands for <strong>Json Query<\/strong>, it\u2019s a parser that is required to generate and process json files generated by oci-cli. It\u2019s available at <a href=\"https:\/\/github.com\/stedolan\/jq\/releases\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/github.com\/stedolan\/jq\/releases<\/a><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[user@localhost ~]$ cd ~\/bin\r\n[user@localhost ~]$ wget -O jq https:\/\/github.com\/stedolan\/jq\/releases\/download\/jq-1.5\/jq-linux64\r\n100%[===========================================&gt;] 2.89M 862KB\/s in 3.8s\r\n2018-09-17 18:55:00 (776 KB\/s) - \u2018jq\u2019 saved [3027945\/3027945]\r\n[user@localhost ~]$ chmod +x jq\r\n[user@localhost ~]$ export PATH=$PATH:`pwd`\r\n[user@localhost ~]$ which jq\r\n\/Users\/myuser\/bin\/jq<\/pre>\n<\/div>\n<\/div>\n<\/div>\n<h3>How to run it?<\/h3>\n<p>1 &#8211; Download the latest version of the public tool <strong>oci_json_export.sh<\/strong> from <a href=\"https:\/\/raw.githubusercontent.com\/dbarj\/oci- scripts\/master\/oci_json_export.sh\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/raw.githubusercontent.com\/dbarj\/oci- scripts\/master\/oci_json_export.sh<\/a><\/p>\n<p>2 &#8211; Copy to server (into any directory) where it will be executed. Optionally, you<br \/>\ncan download it directly to the server using wget:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[user@localhost ~]$ wget https:\/\/raw.githubusercontent.com\/dbarj\/oci-scripts\/master\/oci_json_export.sh\r\n100%[============================&gt;]  26.39K  --.-KB\/s    in 0.03s   \r\n2018-10-10 11:00:21 (979 KB\/s) - \u2018oci_json_export.sh\u2019 saved [27027\/27027]\r\n[user@localhost ~]$ chmod +x oci_json_export.sh<\/pre>\n<p>3 &#8211; Execute shell script <strong><strong><strong>oci_json_export.sh:<\/strong><\/strong><\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[user@localhost ~]$ .\/oci_json_export.sh \r\nUsage: .\/oci_json_export.sh &lt;option&gt;\r\n\r\n&lt;option&gt; - Execution Scope.\r\n\r\nValid &lt;option&gt; values are:\r\n- ALL         - Execute json export for ALL possible options and compress output in a zip file.\r\n- ALL_REGIONS - Same as ALL, but run for all tenancy's subscribed regions.\r\n- Audit-Events\r\n- BV-BVBackups\r\n- BV-BVolumes\r\n...<\/pre>\n<p>4 &#8211; Note you need a parameter. The <strong>1<sup>st<\/sup> parameter<\/strong> must be either:<\/p>\n<ul>\n<li><span style=\"color: #800000;\"><strong>ALL<\/strong><\/span> &#8211; Means it will scan and export all objects found in the current configured default region. Then it will zip the result in a single file.<\/li>\n<li><span style=\"color: #800000;\"><strong>ALL_REGIONS<\/strong><\/span> &#8211; Means the same as ALL, but will go deeper and generate a ZIP for each region you are subscribed.<\/li>\n<li><strong><span style=\"color: #800000;\">(Specific Value)<\/span><\/strong> &#8211; There are more than 30+ other individually specific options you can pass and, in this case, it will export only the json for that object. The exported objected will be spooled to the stdout.<\/li>\n<\/ul>\n<h3>Execution Example<\/h3>\n<p>Below is a execution demo of the tool:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[user@localhost ~]$ ls -l oci_json_export.sh\r\n-rwxrwx---. 1 user user 25192 Sep 17 15:28 oci_json_export.sh\r\n[user@localhost ~]$ .\/oci_json_export.sh ALL_REGIONS\r\nRegion us-ashburn-1 set.\r\nProcessing \"oci_bv_boot-volume-backup.json\".\r\nProcessing \"oci_bv_boot-volume.json\".\r\nProcessing \"oci_bv_backup.json\".\r\nProcessing \"oci_bv_volume-backup-policy.json\".\r\nProcessing \"oci_bv_volume-backup-policy-assignment.json\".\r\nProcessing \"oci_bv_volume-group.json\".\r\nProcessing \"oci_bv_volume-group-backup.json\".\r\nProcessing \"oci_bv_volume.json\".\r\nProcessing \"oci_compute_boot-volume-attachment.json\".\r\n...<\/pre>\n<p>Optionally, you can export the variable <strong>DEBUG=1<\/strong> before calling\u00a0<strong>oci_json_export.sh<\/strong> script. You will be able to view execution steps:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[user@localhost ~]$ export DEBUG=1\r\n[user@localhost ~]$ .\/oci_json_export.sh ALL_REGIONS\r\nRegion us-ashburn-1 set.\r\nProcessing \"oci_bv_boot-volume-backup.json\".\r\nProcessing \"oci_bv_boot-volume.json\".\r\nProcessing \"oci_bv_backup.json\".\r\n...\r\n\r\n## (In another Shell)\r\n\r\n[user@localhost ~]$ tail -f debug.log\r\n20181010110704: oci --cli-rc-file \/dev\/null iam region-subscription list\r\n20181010110706: oci --cli-rc-file \/dev\/null --region us-ashburn-1 iam compartment list --all\r\n20181010110707: oci --cli-rc-file \/dev\/null --region us-ashburn-1 bv boot-volume-backup list --all --compartment-id ocid1.compartment.oc1..aaa\r\n20181010110709: oci --cli-rc-file \/dev\/null --region us-ashburn-1 bv boot-volume-backup list --all --compartment-id ocid1.compartment.oc1..bbb\r\n20181010110721: oci --cli-rc-file \/dev\/null --region us-ashburn-1 bv boot-volume-backup list --all --compartment-id ocid1.compartment.oc1..ccc\r\n20181010110724: oci --cli-rc-file \/dev\/null --region us-ashburn-1 bv boot-volume-backup list --all --compartment-id ocid1.compartment.oc1..ddd\r\n20181010110725: oci --cli-rc-file \/dev\/null --region us-ashburn-1 iam availability-domain list\r\n...\r\n<\/pre>\n<p>Hope you enjoyed.<\/p>\n<b>Have you enjoyed? Please leave a comment or give a \ud83d\udc4d!<\/b>\n<div class='watch-action'><div class='watch-position align-left'><div class='action-like'><a class='lbg-style2 like-4297 jlk' href='javascript:void(0)' data-task='like' data-post_id='4297' data-nonce='de4404f630' rel='nofollow'><img class='wti-pixel' src='https:\/\/www.dbarj.com.br\/wp-content\/plugins\/wti-like-post\/images\/pixel.gif' title='Like' \/><span class='lc-4297 lc'>0<\/span><\/a><\/div><\/div> <div class='status-4297 status align-left'><\/div><\/div><div class='wti-clear'><\/div>","protected":false},"excerpt":{"rendered":"<p>As of today (October 2018), there is still no internal capability in Oracle Cloud Infrastructure to backup the metadata of all the objects you have (like computes, volumes, network, users, etc). This would be indeed a great feature and prefer to believe that Oracle is working to deploy it. Meanwhile, I have some customers that &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/\">Continue lendo<\/a><\/p>\n","protected":false},"author":1,"featured_media":3847,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[44],"tags":[],"class_list":["post-4297","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-oracle-cloud","item-wrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Howto backup Oracle Cloud Infrastructure metadata - DBA - Rodrigo Jorge - Oracle Tips and Guides<\/title>\n<meta name=\"description\" content=\"In this article it&#039;s described the steps needed to backup all the Oracle Cloud Infrastructure metadata information.\" \/>\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.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"DBA RJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/\"},\"author\":{\"name\":\"DBA RJ\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"headline\":\"Howto backup Oracle Cloud Infrastructure metadata\",\"datePublished\":\"2018-10-11T11:00:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/\"},\"wordCount\":573,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Screen-Shot-2018-10-11-at-09.07.02.png\",\"articleSection\":[\"Oracle Cloud\"],\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/\",\"name\":\"Howto backup Oracle Cloud Infrastructure metadata - DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Screen-Shot-2018-10-11-at-09.07.02.png\",\"datePublished\":\"2018-10-11T11:00:29+00:00\",\"description\":\"In this article it's described the steps needed to backup all the Oracle Cloud Infrastructure metadata information.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Screen-Shot-2018-10-11-at-09.07.02.png\",\"contentUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Screen-Shot-2018-10-11-at-09.07.02.png\",\"width\":360,\"height\":298},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/10\\\/howto-backup-oracle-cloud-infrastructure-metadata\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Howto backup Oracle Cloud Infrastructure metadata\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#website\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/\",\"name\":\"DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"description\":\"Blog about Databases, Security and High Availability\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\",\"name\":\"DBA RJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"contentUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"width\":712,\"height\":712,\"caption\":\"DBA RJ\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Howto backup Oracle Cloud Infrastructure metadata - DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"In this article it's described the steps needed to backup all the Oracle Cloud Infrastructure metadata information.","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.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/","twitter_misc":{"Escrito por":"DBA RJ","Est. tempo de leitura":"5 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/#article","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/"},"author":{"name":"DBA RJ","@id":"https:\/\/www.dbarj.com.br\/pt-br\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"headline":"Howto backup Oracle Cloud Infrastructure metadata","datePublished":"2018-10-11T11:00:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/"},"wordCount":573,"commentCount":0,"publisher":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"image":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/10\/Screen-Shot-2018-10-11-at-09.07.02.png","articleSection":["Oracle Cloud"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/","url":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/","name":"Howto backup Oracle Cloud Infrastructure metadata - DBA - Rodrigo Jorge - Oracle Tips and Guides","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/#primaryimage"},"image":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/10\/Screen-Shot-2018-10-11-at-09.07.02.png","datePublished":"2018-10-11T11:00:29+00:00","description":"In this article it's described the steps needed to backup all the Oracle Cloud Infrastructure metadata information.","breadcrumb":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/#primaryimage","url":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/10\/Screen-Shot-2018-10-11-at-09.07.02.png","contentUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/10\/Screen-Shot-2018-10-11-at-09.07.02.png","width":360,"height":298},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/10\/howto-backup-oracle-cloud-infrastructure-metadata\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dbarj.com.br\/pt-br\/"},{"@type":"ListItem","position":2,"name":"Howto backup Oracle Cloud Infrastructure metadata"}]},{"@type":"WebSite","@id":"https:\/\/www.dbarj.com.br\/pt-br\/#website","url":"https:\/\/www.dbarj.com.br\/pt-br\/","name":"DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"Blog about Databases, Security and High Availability","publisher":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbarj.com.br\/pt-br\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":["Person","Organization"],"@id":"https:\/\/www.dbarj.com.br\/pt-br\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9","name":"DBA RJ","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","url":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","contentUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","width":712,"height":712,"caption":"DBA RJ"},"logo":{"@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png"}}]}},"_links":{"self":[{"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/posts\/4297","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/comments?post=4297"}],"version-history":[{"count":0,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/posts\/4297\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/media\/3847"}],"wp:attachment":[{"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/media?parent=4297"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/categories?post=4297"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/tags?post=4297"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}