{"id":4228,"date":"2018-10-26T14:15:16","date_gmt":"2018-10-26T14:15:16","guid":{"rendered":"https:\/\/dbtut.com\/?p=4228"},"modified":"2018-11-27T21:31:27","modified_gmt":"2018-11-27T21:31:27","slug":"oracle-recreate-central-inventory-in-clustareware-in-linux","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/","title":{"rendered":"Oracle &#8211; Recreate Central Inventory in Clustareware in Linux"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>In this article, I will show you how to recreate oracle central inventory in Real Application Clusters. This is not an usual <span id=\"result_box\" class=\"short_text\" lang=\"en\"><span class=\"\">routine work<\/span><\/span> for DBAs. It should be used when your inventory is corrupted. For example, you may encounter by executing opatch command.<\/p>\n<pre class=\"lang:default decode:true\">opatch lsinventory\r\nOracle Interim Patch Installer version 12.1.0.1.5\r\nCopyright (c) 2018, Oracle Corporation. All rights reserved.\r\n\r\nOracle Home : \/u01\/app\/oracle\/product\/12.1.0.2\/dbhome_1\r\nCentral Inventory : \/u01\/app\/oraInventory\r\nfrom : \/u01\/app\/oracle\/product\/12.1.0.2\/dbhome_1\/oraInst.loc\r\nOPatch version : 12.1.0.1.5\r\nOUI version : 12.1.0.2.0\r\nLog file location : \/u01\/app\/oracle\/product\/12.1.0.2\/dbhome_1\/cfgtoollogs\/opatch\/opatch2018-10-18_10-17-53AM_1.log\r\n\r\nList of Homes on this system:\r\n\r\nInventory load failed... OPatch cannot load inventory for the given Oracle Home.\r\nPossible causes are:\r\nOracle Home dir. path does not exist in Central Inventory\r\nOracle Home is a symbolic link\r\nOracle Home inventory is corrupted\r\nLsInventorySession failed: OracleHomeInventory gets null oracleHomeInfo\r\n\r\nOPatch failed with error code 73<\/pre>\n<p>&nbsp;<\/p>\n<p>We assume that you set Oracle Home properly. Therefore, in this situation, you should recreate your inventory.<\/p>\n<p>Firstly, let&#8217;s get our Oracle Homes from our central inventory file. In Linux systems, it is generally<span id=\"kmPgTpl:r1:ot71\" class=\"kmContent\"> pointed to by\u00a0 &#8220;\/etc\/oraInst.loc&#8221;<\/span><\/p>\n<pre class=\"lang:default decode:true\">oracle@orcldb01:~$ cat \/etc\/oraInst.loc\r\ninventory_loc=\/u01\/app\/oraInventory\r\ninst_group=oinstall\r\noracle@orcldb01:~$ cd \/u01\/app\/oraInventory\r\noracle@orcldb01:\/u01\/app\/oraInventory$ cd ContentsXML\r\noracle@orcldb01:\/u01\/app\/oraInventory\/ContentsXML$ cat inventory.xml\r\n&lt;?xml version=\"1.0\" standalone=\"yes\" ?&gt;\r\n&lt;!-- Copyright (c) 1999, 2014, Oracle and\/or its affiliates.\r\nAll rights reserved. --&gt;\r\n&lt;!-- Do not modify the contents of this file by hand. --&gt;\r\n&lt;INVENTORY&gt;\r\n&lt;VERSION_INFO&gt;\r\n&lt;SAVED_WITH&gt;12.1.0.2.0&lt;\/SAVED_WITH&gt;\r\n&lt;MINIMUM_VER&gt;2.1.0.6.0&lt;\/MINIMUM_VER&gt;\r\n&lt;\/VERSION_INFO&gt;\r\n&lt;HOME_LIST&gt;\r\n&lt;HOME NAME=\"OraGI12Home1\" LOC=\"\/u01\/app\/12.1.0.2\/grid\" TYPE=\"O\" IDX=\"1\" CRS=\"true\"&gt;\r\n&lt;NODE_LIST&gt;\r\n&lt;NODE NAME=\"orcldb01\"\/&gt;\r\n&lt;NODE NAME=\"orcldb02\"\/&gt;\r\n&lt;\/NODE_LIST&gt;\r\n&lt;\/HOME&gt;\r\n&lt;HOME NAME=\"OraDB12Home1\" LOC=\"\/u01\/app\/oracle\/product\/12.1.0.2\/dbhome_1\" TYPE=\"O\" IDX=\"2\"&gt;\r\n&lt;NODE_LIST&gt;\r\n&lt;NODE NAME=\"orcldb01\"\/&gt;\r\n&lt;NODE NAME=\"orcldb02\"\/&gt;\r\n&lt;\/NODE_LIST&gt;\r\n&lt;\/HOME&gt;\r\n&lt;\/HOME_LIST&gt;\r\n&lt;COMPOSITEHOME_LIST&gt;\r\n&lt;\/COMPOSITEHOME_LIST&gt;\r\n&lt;\/INVENTORY&gt;<\/pre>\n<p>&nbsp;<\/p>\n<p>We have Grid Home and Oracle Home. Before starting recreation, we must copy original inventory folder from <strong>all nodes<\/strong>.<\/p>\n<pre class=\"lang:default decode:true\">oracle@orcldb01:~$ mv \/u01\/app\/oraInventory \/u01\/app\/oraInventory.orig\r\noracle@orcldb02:~$ mv \/u01\/app\/oraInventory \/u01\/app\/oraInventory.orig<\/pre>\n<p>&nbsp;<\/p>\n<p>Go to OUI bin directory and run below commands from first node.<\/p>\n<pre class=\"lang:default decode:true\">oracle@orcldb01:~$ cd $ORACLE_HOME\/oui\/bin\r\n.\/runInstaller\r\n -silent -ignoreSysPrereqs -attachHome ORACLE_HOME=\"&lt;grid home path&gt;\" ORACLE_HOME_NAME=\"&lt;Name of oracleCRSHome&gt;\" \r\nLOCAL_NODE=\"&lt;localnode&gt;\" CLUSTER_NODES=\"&lt;nodelist&gt;\" CRS=true\r\n\r\n.\/runInstaller -silent -ignoreSysPrereqs -attachHome ORACLE_HOME=\"&lt;oracle home path&gt;\" \r\nORACLE_HOME_NAME=\"&lt;Name of oracleHome&gt;\" LOCAL_NODE=&lt;localnode&gt; CLUSTER_NODES=&lt;nodelist&gt;\r\n\r\n***Important***\r\nIn Our Case:\r\nGrid home Path =\/u01\/app\/12.1.0.2\/grid\r\nOracle CRS Home Name =OraGI12Home1\r\nOracle home Path =\/u01\/app\/oracle\/product\/12.1.0.2\/dbhome_1\r\nOracle Home Name =OraDB12Home1\r\nlocalNode =orcldb01\r\nCluster Nodes = {orcldb01,orcldb02}\r\n\r\nYou must edit these values according to your contents!!!<\/pre>\n<p><span id=\"kmPgTpl:r1:ot71\" class=\"kmContent\">Verify the central inventory location in all the nodes to make sure the inventory was created.<\/span><\/p>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_4228\" class=\"pvc_stats all  \" data-element-id=\"4228\" 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; In this article, I will show you how to recreate oracle central inventory in Real Application Clusters. This is not an usual routine work for DBAs. It should be used when your inventory is corrupted. For example, you may encounter by executing opatch command. opatch lsinventory Oracle Interim Patch Installer version 12.1.0.1.5 Copyright (c) &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_4228\" class=\"pvc_stats all  \" data-element-id=\"4228\" 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":409,"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":[1498,1541,1540],"class_list":["post-4228","post","type-post","status-publish","format-standard","","category-oracle","tag-oracle","tag-real-application-cluster","tag-recreate-central-inventrory"],"aioseo_notices":[],"a3_pvc":{"activated":true,"total_views":213,"today_views":0},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle - Recreate Central Inventory in Clustareware in Linux - Database Tutorials<\/title>\n<meta name=\"description\" content=\"Oracle - Recreate Central Inventory in Clustareware in Linux\" \/>\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\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle - Recreate Central Inventory in Clustareware in Linux - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"Oracle - Recreate Central Inventory in Clustareware in Linux\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-26T14:15:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-11-27T21:31:27+00:00\" \/>\n<meta name=\"author\" content=\"Onur \u00c7\u0131nar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Onur \u00c7\u0131nar\" \/>\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\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/\"},\"author\":{\"name\":\"Onur \u00c7\u0131nar\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/41ed155f5fe241d9b9e909fc728cd41b\"},\"headline\":\"Oracle &#8211; Recreate Central Inventory in Clustareware in Linux\",\"datePublished\":\"2018-10-26T14:15:16+00:00\",\"dateModified\":\"2018-11-27T21:31:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/\"},\"wordCount\":147,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"keywords\":[\"oracle\",\"Real Application Cluster\",\"Recreate Central Inventrory\"],\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/\",\"name\":\"Oracle - Recreate Central Inventory in Clustareware in Linux - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"datePublished\":\"2018-10-26T14:15:16+00:00\",\"dateModified\":\"2018-11-27T21:31:27+00:00\",\"description\":\"Oracle - Recreate Central Inventory in Clustareware in Linux\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle &#8211; Recreate Central Inventory in Clustareware in Linux\"}]},{\"@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\/41ed155f5fe241d9b9e909fc728cd41b\",\"name\":\"Onur \u00c7\u0131nar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/dc231655dcf54a444bcad22797a4d42bf7f4359556572c08eb45a1a822fa3c21?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/dc231655dcf54a444bcad22797a4d42bf7f4359556572c08eb45a1a822fa3c21?s=96&d=mm&r=g\",\"caption\":\"Onur \u00c7\u0131nar\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/onurcinar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle - Recreate Central Inventory in Clustareware in Linux - Database Tutorials","description":"Oracle - Recreate Central Inventory in Clustareware in Linux","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\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Oracle - Recreate Central Inventory in Clustareware in Linux - Database Tutorials","og_description":"Oracle - Recreate Central Inventory in Clustareware in Linux","og_url":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/","og_site_name":"Database Tutorials","article_published_time":"2018-10-26T14:15:16+00:00","article_modified_time":"2018-11-27T21:31:27+00:00","author":"Onur \u00c7\u0131nar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Onur \u00c7\u0131nar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/"},"author":{"name":"Onur \u00c7\u0131nar","@id":"https:\/\/dbtut.com\/#\/schema\/person\/41ed155f5fe241d9b9e909fc728cd41b"},"headline":"Oracle &#8211; Recreate Central Inventory in Clustareware in Linux","datePublished":"2018-10-26T14:15:16+00:00","dateModified":"2018-11-27T21:31:27+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/"},"wordCount":147,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"keywords":["oracle","Real Application Cluster","Recreate Central Inventrory"],"articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/","url":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/","name":"Oracle - Recreate Central Inventory in Clustareware in Linux - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"datePublished":"2018-10-26T14:15:16+00:00","dateModified":"2018-11-27T21:31:27+00:00","description":"Oracle - Recreate Central Inventory in Clustareware in Linux","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/26\/oracle-recreate-central-inventory-in-clustareware-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Oracle &#8211; Recreate Central Inventory in Clustareware in Linux"}]},{"@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\/41ed155f5fe241d9b9e909fc728cd41b","name":"Onur \u00c7\u0131nar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/dc231655dcf54a444bcad22797a4d42bf7f4359556572c08eb45a1a822fa3c21?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dc231655dcf54a444bcad22797a4d42bf7f4359556572c08eb45a1a822fa3c21?s=96&d=mm&r=g","caption":"Onur \u00c7\u0131nar"},"url":"https:\/\/dbtut.com\/index.php\/author\/onurcinar\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/4228","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\/409"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=4228"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/4228\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=4228"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=4228"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=4228"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}