{"id":3577,"date":"2018-10-06T12:56:01","date_gmt":"2018-10-06T12:56:01","guid":{"rendered":"https:\/\/dbtut.com\/?p=3577"},"modified":"2018-11-25T21:19:28","modified_gmt":"2018-11-25T21:19:28","slug":"restore-operations-with-rman","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/","title":{"rendered":"Restore Operations With rman"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>RMAN is a tool also recommended by Oracle for backup and recovery.<\/p>\n<p>There are many recovery scenarios. The main ones are:<\/p>\n<ol>\n<li>Recovering a database file<\/li>\n<li>Recovering a tablespace<\/li>\n<li>Recovering the database<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h3>1 &#8211; Recovering a database file:<\/h3>\n<p>This is the process that should be done when you receive an error similar to the following:<\/p>\n<pre class=\"lang:default decode:true \">ORA-01116: error in opening database file 66\r\nORA-01110: data file 66: \u2018datafile path\/datafilename\u2019\r\nORA-27041: unable to open file\r\nLinux-x86_64 Error: 2: No such file or directory\r\nAdditional information: 3<\/pre>\n<p>&nbsp;<\/p>\n<p>The following commands can be used to recover the related file:<\/p>\n<pre class=\"lang:default decode:true \">run {\r\nsql \u2018alter database datafile 66 offline\u2019;\r\nrestore datafile 66;\r\nrecover datafile 66;\r\nsql \u2018alter database datafile 66 online\u2019;\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<h3>2-\u00a0 Recovering a Tablespace:<\/h3>\n<p>It is painful for users but very simple operation for DBAs.<\/p>\n<p><strong>Solution:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">run {\r\nsql \u2018alter tablespace tablespace_name offline immediate\u2019;\r\nrestore tablespace tablespace_name;\r\nrecover tablespace tablespace_name;\r\nsql \u2018alter tablespace tablespace_name online\u2019;\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<h3>3-\u00a0 Recovering the database:<\/h3>\n<p>This is the most difficult situation that can happen to you. If the database does not open and many files have been deleted, you will need to return the database from the backup. If you try to open the database and there is a situation similar to the following:<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">SQL&gt; startup\r\nORACLE instance started.\r\nTotal System Global Area 2.3622E+10 bytes\r\nFixed Size 2126480 bytes\r\nVariable Size 1.1341E+10 bytes\r\nDatabase Buffers 1.2264E+10 bytes\r\nRedo Buffers 14647296 bytes\r\nORA-00205: error in identifying control file, check alert log for more info<\/pre>\n<p>&nbsp;<\/p>\n<p>Don&#8217;t panic, everything&#8217;s under control.<\/p>\n<p>Run the following command from a rman session.<\/p>\n<pre class=\"lang:default decode:true\">startup nomount;<\/pre>\n<p>Later<\/p>\n<pre class=\"lang:default decode:true \">restore controlfile;<\/pre>\n<p>&nbsp;<\/p>\n<p>Some different parameters may be required for the &#8220;Conrolfile&#8221; return operation. The location of the backup, the place to return, etc. You should see the output similar to the following when you return.<\/p>\n<pre class=\"lang:default decode:true \">Starting restore at 13-MAR-07\r\nallocated channel: ORA_DISK_1\r\nchannel ORA_DISK_1: sid=162 devtype=DISK\r\n\r\nchannel ORA_DISK_1: starting datafile backupset restore\r\nchannel ORA_DISK_1: restoring controlfile\r\nchannel ORA_DISK_1: restored backup piece 1\r\npiece handle=\/path\/o1_mf_s_617126064_2zfl9jy0_.bkp tag=TAG20070313T155424\r\nchannel ORA_DISK_1: restore complete\r\noutput filename=\/oradata\/ueltest\/control01.ctl\r\noutput filename=\/oradata\/ueltest\/control02.ctl\r\noutput filename=\/oradata\/ueltest\/control03.ctl\r\nFinished restore at 13-MAR-07<\/pre>\n<p>&nbsp;<\/p>\n<p>Then run the following command from a rman session.<\/p>\n<pre class=\"lang:default decode:true\">RMAN&gt; alter database mount;\r\ndatabase mounted\r\nreleased channel: ORA_DISK_1<\/pre>\n<p>&nbsp;<\/p>\n<p>Then run the following command.<\/p>\n<pre class=\"lang:default decode:true \">RMAN&gt; host;<\/pre>\n<p>&nbsp;<\/p>\n<p>Connect with SQL PLus to access the latest stable SCN information of the database with the following command:<\/p>\n<pre class=\"lang:default decode:true \">sqlplus \/ as sysdba<\/pre>\n<pre class=\"lang:default decode:true \">SQL&gt; select archivelog_change#-1 from v$database;<\/pre>\n<p>&nbsp;<\/p>\n<p>Close all rman sessions and then reconnect.<\/p>\n<p>With the following command, let&#8217;s bring the database to the final stable SCN.<\/p>\n<pre class=\"lang:default decode:true \">run{\r\nset until scn (you must enter the number returned from the previous query here);\r\nrestore database;\r\nrecover database;\r\nalter database open resetlogs;\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<p>These operations can take a long or short period depending on the read speed of the backup environment. When everything goes well, the database will be open and running.<\/p>\n<p>Make sure you get a full backup immediately after each database recovery. Because the previous backups will be invalid.<\/p>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_3577\" class=\"pvc_stats all  \" data-element-id=\"3577\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; RMAN is a tool also recommended by Oracle for backup and recovery. There are many recovery scenarios. The main ones are: Recovering a database file Recovering a tablespace Recovering the database &nbsp; 1 &#8211; Recovering a database file: This is the process that should be done when you receive an error similar to the &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_3577\" class=\"pvc_stats all  \" data-element-id=\"3577\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-3577","post","type-post","status-publish","format-standard","","category-oracle"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Restore Operations With rman - Database Tutorials<\/title>\n<meta name=\"description\" content=\"Restore Operations With rman\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Restore Operations With rman - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"Restore Operations With rman\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-06T12:56:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-11-25T21:19:28+00:00\" \/>\n<meta name=\"author\" content=\"dbtut\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"dbtut\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/\"},\"author\":{\"name\":\"dbtut\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408\"},\"headline\":\"Restore Operations With rman\",\"datePublished\":\"2018-10-06T12:56:01+00:00\",\"dateModified\":\"2018-11-25T21:19:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/\"},\"wordCount\":300,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/\",\"name\":\"Restore Operations With rman - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"datePublished\":\"2018-10-06T12:56:01+00:00\",\"dateModified\":\"2018-11-25T21:19:28+00:00\",\"description\":\"Restore Operations With rman\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Restore Operations With rman\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408\",\"name\":\"dbtut\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g\",\"caption\":\"dbtut\"},\"description\":\"We are a team with over 10 years of database management and BI experience. Our Expertises: Oracle, SQL Server, PostgreSQL, MySQL, MongoDB, Elasticsearch, Kibana, Grafana.\",\"sameAs\":[\"http:\/\/NurullahCAKIR\"],\"url\":\"https:\/\/dbtut.com\/index.php\/author\/dbtut\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Restore Operations With rman - Database Tutorials","description":"Restore Operations With rman","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/","og_locale":"en_US","og_type":"article","og_title":"Restore Operations With rman - Database Tutorials","og_description":"Restore Operations With rman","og_url":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/","og_site_name":"Database Tutorials","article_published_time":"2018-10-06T12:56:01+00:00","article_modified_time":"2018-11-25T21:19:28+00:00","author":"dbtut","twitter_card":"summary_large_image","twitter_misc":{"Written by":"dbtut","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/"},"author":{"name":"dbtut","@id":"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408"},"headline":"Restore Operations With rman","datePublished":"2018-10-06T12:56:01+00:00","dateModified":"2018-11-25T21:19:28+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/"},"wordCount":300,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/","url":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/","name":"Restore Operations With rman - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"datePublished":"2018-10-06T12:56:01+00:00","dateModified":"2018-11-25T21:19:28+00:00","description":"Restore Operations With rman","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/06\/restore-operations-with-rman\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Restore Operations With rman"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408","name":"dbtut","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g","caption":"dbtut"},"description":"We are a team with over 10 years of database management and BI experience. Our Expertises: Oracle, SQL Server, PostgreSQL, MySQL, MongoDB, Elasticsearch, Kibana, Grafana.","sameAs":["http:\/\/NurullahCAKIR"],"url":"https:\/\/dbtut.com\/index.php\/author\/dbtut\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/3577","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=3577"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/3577\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=3577"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=3577"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=3577"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}