{"id":3605,"date":"2012-07-02T06:33:47","date_gmt":"2012-07-02T10:33:47","guid":{"rendered":"http:\/\/onlineappsdba.com\/?p=3605"},"modified":"2012-07-02T06:33:47","modified_gmt":"2012-07-02T10:33:47","slug":"backup-and-restore-oim-11g","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/","title":{"rendered":"Backup and restore OIM 11g"},"content":{"rendered":"<p>This post will explain the steps to back and restore the OIM 11g. Typically the cases for backup and restore would involve:<\/p>\n<ul>\n<li>Restoring in same database (restoring to previous working state)<\/li>\n<li>Restoring in different database (setting up new OIM environment in new DB instance)<\/li>\n<\/ul>\n<p>I will explain the 1st scenario here. The export and import is recommended using data pump client utlity.<\/p>\n<p><strong>Exporting OIM stuff<\/strong>:<\/p>\n<p>In 11g all the OIM data will get stored in database schemas XXX_OIM, XXX_SOAINFRA, XXX_ORASDPM, XXX_MDS.<\/p>\n<p>XXX_OIM: This contains all the OIM specific schema.<\/p>\n<p>XXX_SOAINFRA: If there are workflows configured in the environment, this schema has all of it.<\/p>\n<p>XXX_ORASDPM: This is the user messaging schema.<\/p>\n<p>XXX_MDS: Stores all the metadata of the environment.<\/p>\n<ul>\n<li>Shutdown the OIM Managed server, SOA Managed server and weblogic admin servers.<\/li>\n<li>Shutdown DB server and start up. This is to avoid any functional inconsistency in the data being exported.<\/li>\n<li>Goto the DB machine and execute the command as shown below at $ORACLE_HOME\/bin.<\/li>\n<\/ul>\n<p><strong><em>expdp &#8216;&#8221;\/as sysdba&#8221;&#8216; DIRECTORY=DATA_PUMP_DIR SCHEMAS=DEV_OIM,DEV_SOAINFRA,DEV_MDS,DEV_ORASDPM DUMPFILE=OIMSchemaExport.dmp LOGFILE=OIMSchemaExport.log JOB_NAME=OIMSchemaExport_JOB PARALLEL=4 COMPRESSION=ALL<\/em><\/strong><\/p>\n<p>The dump file (OIMSchemaExport.dmp) is where all our OIM schema backup is stored. Don&#8217;t open this as it may get corrupted. Check for the log file OIMSchemaExport.log for any errors.<\/p>\n<p><strong>Importing\/Restoring OIM stuff<\/strong>:<\/p>\n<ul>\n<li>Shutdown the OIM Managed server, SOA Managed server and weblogic admin servers.<\/li>\n<li>Drop the schemas XXX_OIM, XXX_SOAINFRA, XXX_ORASDPM, XXX_MDS by logging into SQL with user having sysdba privileges. Use the command <strong><em>drop user XXX_OIM cascade<\/em><\/strong>. Execute this command for all other schemas.<\/li>\n<li>Goto the DB machine and execute the command as shown below at $ORACLE_HOME\/bin.<\/li>\n<\/ul>\n<p><strong><em>impdp &#8216;&#8221;\/as sysdba&#8221;&#8216; SCHEMAS=DEV_OIM,DEV_SOAINFRA,DEV_MDS,DEV_ORASDPM DUMPFILE=OIMSchemaExport.dmp LOGFILE=OIMSchemaImport.log JOB_NAME=OIMSchemaExport_JOB PARALLEL=4 <\/em><\/strong><\/p>\n<ul>\n<li>Check the log file OIMSchemaImport.log for any errors.<\/li>\n<li>Start the WebLogic admin server, SOA server and OIM server.<\/li>\n<li>Login to OIM console to see if it is restored appropriately.<\/li>\n<\/ul>\n<p>Hope this helps.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This post will explain the steps to back and restore the OIM 11g. Typically the cases for backup and restore [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"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":"","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-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":"","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-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":"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":""},"mobile":{"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":""}},"footnotes":""},"categories":[185],"tags":[],"class_list":["post-3605","post","type-post","status-publish","format-standard","hentry","category-oim"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Backup and restore OIM 11g -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Backup and restore OIM 11g -\" \/>\n<meta property=\"og:description\" content=\"This post will explain the steps to back and restore the OIM 11g. Typically the cases for backup and restore [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-07-02T10:33:47+00:00\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/\",\"name\":\"Backup and restore OIM 11g -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"datePublished\":\"2012-07-02T10:33:47+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Backup and restore OIM 11g\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Backup and restore OIM 11g -","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:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/","og_locale":"en_US","og_type":"article","og_title":"Backup and restore OIM 11g -","og_description":"This post will explain the steps to back and restore the OIM 11g. Typically the cases for backup and restore [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/","article_published_time":"2012-07-02T10:33:47+00:00","author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/","url":"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/","name":"Backup and restore OIM 11g -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"datePublished":"2012-07-02T10:33:47+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2012\/07\/02\/backup-and-restore-oim-11g\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"Backup and restore OIM 11g"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/3605","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=3605"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/3605\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=3605"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=3605"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=3605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}