{"id":3010,"date":"2018-09-17T10:25:15","date_gmt":"2018-09-17T10:25:15","guid":{"rendered":"http:\/\/dbtut.com\/?p=3010"},"modified":"2018-11-24T18:57:08","modified_gmt":"2018-11-24T18:57:08","slug":"configuration-of-rman-using-oracle-10g","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/","title":{"rendered":"Configuration of RMAN using Oracle 10g"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>There are many ways to setup the RMAN. Here i am using the separete database to store backup catalog information with windows Server 2008 (OS). Please remember, the directories and folder might change based on the OS and environment.<\/p>\n<p>Here i am using <strong>UMIS<\/strong> as primary database and <strong>CATDB<\/strong> as catalog database.<\/p>\n<p><span style=\"color: #000000;\"><strong>Step1.<\/strong><\/span> Enable the archive log in UMIS database<\/p>\n<pre class=\"lang:default decode:true\">SQL&gt; archive log list\r\nDatabase log mode No Archive Mode<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Shutdown database:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SQL&gt; shutdown immediate;\r\nDatabase closed.\r\nDatabase dismounted.\r\nORACLE instance shut down.<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Startup your database in mount state:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SQL&gt; startup mount;\r\n\r\nORACLE instance started.\r\nTotal System Global Area 1503199232 bytes\r\nFixed Size 2288584 bytes\r\nVariable Size 905970744 bytes\r\nDatabase Buffers 587202560 bytes\r\nRedo Buffers 7737344 bytes\r\nDatabase mounted.<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Configure your database in archivelog mode by issue the following:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SQL&gt; alter database archivelog;\r\nDatabase altered.<\/pre>\n<p>&nbsp;<\/p>\n<p><strong><span style=\"color: #000000;\">Step2.<\/span><\/strong> Install the CATDB and Create the tablespace and user in catalog database to hold backup information.<\/p>\n<pre class=\"lang:default decode:true\">SQL&gt; CONNECT sys\/password@catdb AS SYSDBA\r\nConnected.<\/pre>\n<pre class=\"lang:default decode:true\">SQL&gt; CREATE TABLESPACE RMAN DATAFILE \u2018F:\\CATDB\\RMAN01.DBF' SIZE 480M\r\nAUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED\r\nLOGGING\r\nONLINE\r\nEXTENT MANAGEMENT LOCAL AUTOALLOCATE\r\nBLOCKSIZE 8K\r\nSEGMENT SPACE MANAGEMENT AUTO\r\nFLASHBACK ON;\r\n<strong>Tablespace created.<\/strong><\/pre>\n<pre class=\"lang:default decode:true\">SQL&gt; CREATE USER rman IDENTIFIED BY rman\r\nTEMPORARY TABLESPACE temp\r\nDEFAULT TABLESPACE rman\r\nQUOTA UNLIMITED ON rman;\r\n<strong>User created.\r\n<\/strong><\/pre>\n<pre class=\"lang:default decode:true\">SQL&gt; GRANT connect, resource, recovery_catalog_owner TO rman;\r\n<strong>Grant succeeded.<\/strong><\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step3.<\/strong> Create the recovery catalog in catalog database.<\/p>\n<pre class=\"lang:default decode:true\">C:\\&gt;rman catalog=rman\/rman@catdb\r\nRecovery Manager: Release 10.2.0.1.0 - Production on Thu May 21 09:59:26 2009\r\nCopyright (c) 1982, 2005, Oracle. All rights reserved.\r\nConnected to recovery catalog database<\/pre>\n<pre class=\"lang:default decode:true\">RMAN&gt; create catalog tablespace \"RMAN\"; -- This is a logically tablespace.\r\n<strong>Recovery catalog created<\/strong><\/pre>\n<pre class=\"lang:default decode:true\">RMAN&gt; exit\r\n<strong>Recovery Manager complete.<\/strong><\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step4.<\/strong> Register the database with Catalog database. Each database should be registered to catalog database to run RMAN backup.<\/p>\n<pre class=\"lang:default decode:true\">C:\\&gt;rman catalog=rman\/rman@catdb target=sys\/password@UMIS\r\nRecovery Manager: Release 10.2.0.1.0 - Production on Thu May 21 09:59:26 2009\r\nCopyright (c) 1982, 2005, Oracle. All rights reserved.\r\nConnected to recovery catalog database<\/pre>\n<pre class=\"lang:default decode:true\">RMAN&gt; Register Database;\r\n<strong>Database registered in Recovery catalog\r\n<\/strong>Starting full resync of recovery catalog\r\nfull resync complete<strong>\r\n<\/strong><\/pre>\n<pre class=\"lang:default decode:true\">RMAN&gt; exit\r\n<strong>Recovery Manager complete.<\/strong><\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step5.<\/strong> Configure the persistent parameters.<\/p>\n<pre class=\"lang:default decode:true\">C:\\&gt;rman catalog=rman\/rman@catdb target=sys\/password@UMIS\r\nRecovery Manager: Release 10.2.0.1.0 - Production on Thu May 21 09:59:26 2009\r\nCopyright (c) 1982, 2005, Oracle. All rights reserved.\r\nConnected to recovery catalog database<\/pre>\n<pre class=\"lang:default decode:true\">RMAN&gt; configure retention policy to recovery window of 2 days;<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>New RMAN configuration parameters:<br \/>\n<\/strong><\/p>\n<pre class=\"lang:default decode:true\">CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 2 DAYS;\r\nnew RMAN configuration parameters are successfully stored\r\nstarting full resync of recovery catalog\r\nfull resync complete<\/pre>\n<pre class=\"lang:default decode:true \">RMAN&gt; configure default device type to disk;<\/pre>\n<p><strong>New RMAN configuration parameters:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">CONFIGURE DEFAULT DEVICE TYPE TO DISK;\r\nnew RMAN configuration parameters are successfully stored\r\nstarting full resync of recovery catalog\r\nfull resync complete<\/pre>\n<pre class=\"lang:default decode:true \">RMAN&gt; configure controlfile autobackup on;<\/pre>\n<p><strong>New RMAN configuration parameters:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">CONFIGURE CONTROLFILE AUTOBACKUP ON;\r\nnew RMAN configuration parameters are successfully stored\r\nstarting full resync of recovery catalog\r\nfull resync complete<\/pre>\n<pre class=\"lang:default decode:true \">RMAN&gt; Configure channel device type disk format 'F:\\rmanbackup\\Backup%d_DB_%U_%S_%P';<\/pre>\n<p><strong>New RMAN configuration parameters:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'F:\\rmanbackup\\Backup%d_DB_%U_%S_%P';\r\nnew RMAN configuration parameters are successfully stored\r\nstarting full resync of recovery catalog\r\nfull resync complete<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step 6.<\/strong> Take database full backup. The full database backup should be taken first time. Afterwards, archivelog backup will be taken.<\/p>\n<pre class=\"lang:default decode:true\">C:\\&gt;rman catalog=rman\/rman@catdb target=sys\/password@orcl\r\nRecovery Manager: Release 10.2.0.1.0 - Production on Thu May 21 10:16:09 2009\r\nCopyright (c) 1982, 2005, Oracle. All rights reserved.\r\nConnected to target database: ORCL (DBID=1215124933)\r\nconnected to recovery catalog database<\/pre>\n<pre class=\"lang:default decode:true\">RMAN&gt; run{backup database plus archivelog; delete noprompt obsolete;}\r\n<strong>Starting full resync of recovery catalog\r\n<\/strong>full resync complete<\/pre>\n<pre class=\"lang:default decode:true\">RMAN&gt; exit\r\nRecovery Manager complete<\/pre>\n<p>Now the RMAN setup is completed successfully. Here is the info about RMAN.<\/p>\n<pre class=\"lang:default decode:true\">Primary DB = UMIS\r\nCatalog DB = CATDB\r\nRMAN Backup location = F:\\rmanbackup.\r\nNow the full backup is taken. Every day, the below script should run and backup the new archive log files.\r\nC:\\&gt;rman catalog=rman\/rman@catdb target=sys\/oracle@UMIS\r\nRecovery Manager: Release 10.2.0.1.0 - Production on Thu May 21 10:16:09 2009\r\nCopyright (c) 1982, 2005, Oracle. All rights reserved.\r\nConnected to target database: ORCL (DBID=1215124933)\r\nconnected to recovery catalog database<\/pre>\n<pre class=\"lang:default decode:true\">RMAN&gt; run{delete noprompt obsolete; backup archivelog all;}\r\nRMAN&gt; exit\r\nRecovery Manager complete.<\/pre>\n<p><strong>Note:<\/strong> We can run the below script\u00a0daily at specific time by setting up the scheduler. Please follow the steps:<\/p>\n<pre class=\"lang:default decode:true\">C:\\&gt;rman catalog=rman\/rman@catdb target=sys\/oracle@UMIS<\/pre>\n<p>Wrtie one sql file named daily_backup.sql which should contain the following code.<\/p>\n<pre class=\"lang:default decode:true \">run\r\n{\r\nbackup archivelog all;\r\ndelete noprompt obsolete;\r\n}<\/pre>\n<p>Other file is bat file named daily_backup.bat (This file will call by scheduler) which should contain the following command.<\/p>\n<pre class=\"lang:default decode:true \">rman catalog=rman\/rman@catdb target=sys\/password@orcl cmdfile daily_backup.sql<\/pre>\n<p><strong>Good Day<\/strong><\/p>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_3010\" class=\"pvc_stats all  \" data-element-id=\"3010\" 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; There are many ways to setup the RMAN. Here i am using the separete database to store backup catalog information with windows Server 2008 (OS). Please remember, the directories and folder might change based on the OS and environment. Here i am using UMIS as primary database and CATDB as catalog database. Step1. Enable &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_3010\" class=\"pvc_stats all  \" data-element-id=\"3010\" 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":303,"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-3010","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>Configuration of RMAN using Oracle 10g - Database Tutorials<\/title>\n<meta name=\"description\" content=\"Configuration of RMAN using Oracle 10g\" \/>\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\/09\/17\/configuration-of-rman-using-oracle-10g\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configuration of RMAN using Oracle 10g - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"Configuration of RMAN using Oracle 10g\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-17T10:25:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-11-24T18:57:08+00:00\" \/>\n<meta name=\"author\" content=\"Fatima Hussain\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fatima Hussain\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/\"},\"author\":{\"name\":\"Fatima Hussain\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/3c800d1793f801db4596862879255538\"},\"headline\":\"Configuration of RMAN using Oracle 10g\",\"datePublished\":\"2018-09-17T10:25:15+00:00\",\"dateModified\":\"2018-11-24T18:57:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/\"},\"wordCount\":251,\"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\/09\/17\/configuration-of-rman-using-oracle-10g\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/\",\"name\":\"Configuration of RMAN using Oracle 10g - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"datePublished\":\"2018-09-17T10:25:15+00:00\",\"dateModified\":\"2018-11-24T18:57:08+00:00\",\"description\":\"Configuration of RMAN using Oracle 10g\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configuration of RMAN using Oracle 10g\"}]},{\"@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\/3c800d1793f801db4596862879255538\",\"name\":\"Fatima Hussain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0b8a3a01b42711ecb5d159623f524157e596c2dd11999dfaae618021b545ee6f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0b8a3a01b42711ecb5d159623f524157e596c2dd11999dfaae618021b545ee6f?s=96&d=mm&r=g\",\"caption\":\"Fatima Hussain\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/fatimahussain\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Configuration of RMAN using Oracle 10g - Database Tutorials","description":"Configuration of RMAN using Oracle 10g","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\/09\/17\/configuration-of-rman-using-oracle-10g\/","og_locale":"en_US","og_type":"article","og_title":"Configuration of RMAN using Oracle 10g - Database Tutorials","og_description":"Configuration of RMAN using Oracle 10g","og_url":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/","og_site_name":"Database Tutorials","article_published_time":"2018-09-17T10:25:15+00:00","article_modified_time":"2018-11-24T18:57:08+00:00","author":"Fatima Hussain","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Fatima Hussain","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/"},"author":{"name":"Fatima Hussain","@id":"https:\/\/dbtut.com\/#\/schema\/person\/3c800d1793f801db4596862879255538"},"headline":"Configuration of RMAN using Oracle 10g","datePublished":"2018-09-17T10:25:15+00:00","dateModified":"2018-11-24T18:57:08+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/"},"wordCount":251,"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\/09\/17\/configuration-of-rman-using-oracle-10g\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/","url":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/","name":"Configuration of RMAN using Oracle 10g - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"datePublished":"2018-09-17T10:25:15+00:00","dateModified":"2018-11-24T18:57:08+00:00","description":"Configuration of RMAN using Oracle 10g","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/17\/configuration-of-rman-using-oracle-10g\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Configuration of RMAN using Oracle 10g"}]},{"@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\/3c800d1793f801db4596862879255538","name":"Fatima Hussain","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0b8a3a01b42711ecb5d159623f524157e596c2dd11999dfaae618021b545ee6f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0b8a3a01b42711ecb5d159623f524157e596c2dd11999dfaae618021b545ee6f?s=96&d=mm&r=g","caption":"Fatima Hussain"},"url":"https:\/\/dbtut.com\/index.php\/author\/fatimahussain\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/3010","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\/303"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=3010"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/3010\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=3010"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=3010"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=3010"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}