{"id":51542,"date":"2022-07-12T18:25:46","date_gmt":"2022-07-12T18:25:46","guid":{"rendered":"https:\/\/dbtut.com\/?p=51542"},"modified":"2022-07-12T18:27:04","modified_gmt":"2022-07-12T18:27:04","slug":"upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/","title":{"rendered":"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2"},"content":{"rendered":"<p>In this article, I will talk about how to Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2.<\/p>\n<p>Current ORACLE_HOME :<\/p>\n<pre class=\"lang:default decode:true \">\/u01\/app\/oracle\/product\/11.2.0\/dbhome_1<\/pre>\n<p>New ORACLE_HOME :<\/p>\n<pre class=\"lang:default decode:true \">\/u02\/app\/oracle\/product\/12.1.0.2\/db_1<\/pre>\n<p>Database name : TESTDB<\/p>\n<h4>Prerequisites<\/h4>\n<p>1. We create directories and give permissions.<\/p>\n<pre class=\"lang:default decode:true \">$ mkdir -p \/u02\/app\/oracle\/product\/12.1.0.2\/db_1\r\n$ chown -R oracle:oinstall \/u02\r\n$ chmod -R 775 \/u02<\/pre>\n<p>2. We empty the Recyclebin.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt; PURGE DBA_RECYCLEBIN;\r\n<\/pre>\n<p>3. We compile invalid objects.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt; @?\/rdbms\/admin\/utlrp.sql\r\n<\/pre>\n<h4>Manual Upgrade<\/h4>\n<p>1. We copy the script files of the Preupgrade tool.<\/p>\n<pre class=\"lang:default decode:true \">$ mkdir -p \/tmp\/upgrade\r\n$ cp \/u02\/app\/oracle\/product\/12.1.0.2\/db_1\/rdbms\/admin\/preupgrd.sql \/tmp\/upgrade\r\n$ cp \/u02\/app\/oracle\/product\/12.1.0.2\/db_1\/rdbms\/admin\/utluppkg.sql \/tmp\/upgrade<\/pre>\n<p>2. We run the Preupgrade tool.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt; @\/tmp\/upgrade\/preupgrd.sql\r\nACTIONS REQUIRED:\r\n1. Review results of the pre-upgrade checks:\r\n \/tmp\/upgrade\/preupgrade.log\r\n2. Execute in the SOURCE environment BEFORE upgrade:\r\n \/tmp\/upgrade\/preupgrade_fixups.sql\r\n3. Execute in the NEW environment AFTER upgrade:\r\n \/tmp\/upgrade\/postupgrade_fixups.sql\r\n$ cd \/tmp\/upgrade\r\n$ ls -ltr\r\n-rw-r--r-- 1 oracle oinstall 8049 Sep 10 11:36 preupgrade.log\r\n-rw-r--r-- 1 oracle oinstall 3567 Sep 10 11:36 preupgrade_fixups.sql\r\n-rw-r--r-- 1 oracle oinstall 2656 Sep 10 11:36 postupgrade_fixups.sql\r\n<\/pre>\n<p>3. We run preupgrade_fixup.sql and check the changes.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt; @\/tmp\/upgrade\/preupgrade_fixups.sql\r\n<\/pre>\n<p>4. The suggested changes as a result of running preupgrade_fixup.sql are as follows.<\/p>\n<pre class=\"lang:default decode:true \">ALTER SYSTEM SET PROCESSES=300 SCOPE=SPFILE\r\n- Stop EM Database Control:\r\n    $&gt; emctl stop dbconsole\r\ncp \/u02\/app\/oracle\/product\/12.1.0.2\/db_1\/rdbms\/admin\/emremove.sql $ORACLE_HOME\/rdbms\/admin\/\r\n \r\n   - Connect to the Database using the SYS account AS SYSDBA:\r\n   SET ECHO ON;\r\n   SET SERVEROUTPUT ON;\r\n   @emremove.sql\r\n   \r\nORACLE_HOME\/olap\/admin\/catnoamd.sql script before or \r\n     after the upgrade.\r\n  \r\n EXECUTE dbms_stats.gather_dictionary_stats;<\/pre>\n<p>5. We check the dbms_scheduler jobs and disable the enabled jobs.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt; set pagesize 2000\r\nSQL&gt; set lines 2000\r\nSQL&gt; set long 99999\r\nSQL&gt; select owner,JOB_NAME,ENABLED,state from dba_scheduler_jobs;\r\nSQL&gt; execute dbms_scheduler.disable('RLM$EVTCLEANUP');<\/pre>\n<p>6. We check the default tablespace of system and sys. Both must be the same.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt; SELECT username, default_tablespace\r\nFROM dba_users\r\nWHERE username in ('SYS','SYSTEM');\r\nUSERNAME                      |DEFAULT_TABLESPACE\r\n------------------------------|------------------------------\r\nSYSTEM                        |SYSTEM\r\nSYS                           |SYSTEM<\/pre>\n<p>7. We stop the Listener and close the database.<\/p>\n<pre class=\"lang:default decode:true \">$ lsnrctl stop listener\r\nSQL&gt; shu immediate<\/pre>\n<p>8. The new ORACLE HOME path is set.<\/p>\n<pre class=\"lang:default decode:true \">$ export ORACLE_HOME=\/u02\/app\/oracle\/product\/12.1.0.2\/db_1\r\n$ export PATH=$ORACLE_HOME\/bin:$PATH\r\n$ export ORACLE_BASE=\/u02\/app\/oracle\/<\/pre>\n<p>9. Copy the spfile and password file under 11G $ORACLE_HOME\/dbs to 12C $ORACLE_HOME\/dbs.<\/p>\n<pre class=\"lang:default decode:true \">$ cp \/u01\/app\/oracle\/product\/11.2.0\/dbhome_1\/dbs\/spfileTESTDB.ora \/u02\/app\/oracle\/product\/12.1.0.2\/db_1\/dbs\/\r\n$ cp \/u01\/app\/oracle\/product\/11.2.0\/dbhome_1\/dbs\/orapwTESTDB \/u02\/app\/oracle\/product\/12.1.0.2\/db_1\/dbs\/<\/pre>\n<p>10. We start the database in upgrade mode.<\/p>\n<pre class=\"lang:default decode:true \">$ cd $ORACLE_HOME\/rdbms\/admin\r\n$ pwd\r\n\/u02\/app\/oracle\/product\/12.1.0.2\/db_1\/rdbms\/admin\r\n$ sqlplus \u201c\/ as sysdba\u201d\r\nSQL&gt; startup UPGRADE\r\nSQL&gt; exit<\/pre>\n<p>11. We run the catupgrd script file in 4 parallels.<\/p>\n<pre class=\"lang:default decode:true \">$cd $ORACLE_HOME\/rdbms\/admin\r\n$ORACLE_HOME\/perl\/bin\/perl catctl.pl -n 4-l $ORACLE_HOME\/diagnostics catupgrd.sql<\/pre>\n<p>12. We follow the log.<\/p>\n<pre class=\"lang:default decode:true \">$ cd \/uv1172\/apps\/oracle\/product\/12.1.0.2\/diagnostics\r\n$ tail -100f catupgrd0.log<\/pre>\n<p>13. We open the database and run the Post-Upgrade tool.<\/p>\n<pre class=\"lang:default decode:true \">$ sqlplus \"\/as sysdba\"\r\nSQL&gt; startup\r\nSQL&gt; @utlu121s.sql<\/pre>\n<p>14. We run catuppst.sql.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt;@$ORACLE_HOME\/rdbms\/admin\/catuppst.sql\r\n<\/pre>\n<p>15. We run postupgrade_fixups.sql and do the suggested actions.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt;@$ORACLE_HOME\/rdbms\/admin\/catuppst.sql\r\n-- The following item is probably included in your postupgrade_fixups.sql script.\r\nEXECUTE DBMS_STATS.gather_fixed_objects_stats;\r\n-- Recompile invalid objects.\r\n@utlrp.sql\r\n-- Check for newly invalid objects.\r\n@utluiobj.sql\r\n-- Run again to check the final outcome of the upgrade.\r\n@utlu121s.sql<\/pre>\n<p>16. We check the upgraded database.<\/p>\n<pre class=\"lang:default decode:true \">$ sqlplus \/ as sysdba\r\nSQL&gt; SELECT name, open_mode FROM v$database;\r\nNAME      OPEN_MODE\r\n--------- --------------------\r\nTESTDB    READ WRITE<\/pre>\n<p>As we have seen above, the database is available in READ\/WRITE mode after the upgrade.<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_51542\" class=\"pvc_stats all  \" data-element-id=\"51542\" 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>In this article, I will talk about how to Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2. Current ORACLE_HOME : \/u01\/app\/oracle\/product\/11.2.0\/dbhome_1 New ORACLE_HOME : \/u02\/app\/oracle\/product\/12.1.0.2\/db_1 Database name : TESTDB Prerequisites 1. We create directories and give permissions. $ mkdir -p \/u02\/app\/oracle\/product\/12.1.0.2\/db_1 $ chown -R oracle:oinstall \/u02 $ chmod -R 775 \/u02 2. We empty the Recyclebin. &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_51542\" class=\"pvc_stats all  \" data-element-id=\"51542\" 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":3068,"featured_media":51543,"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-51542","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle"],"aioseo_notices":[],"a3_pvc":{"activated":true,"total_views":164,"today_views":0},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2 - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In this article, I will talk about how to Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2.Current ORACLE_HOME :\" \/>\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\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2 - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In this article, I will talk about how to Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2.Current ORACLE_HOME :\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-12T18:25:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-12T18:27:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"237\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Melek Durdu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Melek Durdu\" \/>\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\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/\"},\"author\":{\"name\":\"Melek Durdu\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b\"},\"headline\":\"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2\",\"datePublished\":\"2022-07-12T18:25:46+00:00\",\"dateModified\":\"2022-07-12T18:27:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/\"},\"wordCount\":201,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/\",\"name\":\"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2 - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png\",\"datePublished\":\"2022-07-12T18:25:46+00:00\",\"dateModified\":\"2022-07-12T18:27:04+00:00\",\"description\":\"In this article, I will talk about how to Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2.Current ORACLE_HOME :\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png\",\"width\":960,\"height\":237},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2\"}]},{\"@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\/f9c7aff3fe68fef0255caa38a944ce4b\",\"name\":\"Melek Durdu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g\",\"caption\":\"Melek Durdu\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/melekdurdu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2 - Database Tutorials","description":"In this article, I will talk about how to Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2.Current ORACLE_HOME :","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\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/","og_locale":"en_US","og_type":"article","og_title":"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2 - Database Tutorials","og_description":"In this article, I will talk about how to Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2.Current ORACLE_HOME :","og_url":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/","og_site_name":"Database Tutorials","article_published_time":"2022-07-12T18:25:46+00:00","article_modified_time":"2022-07-12T18:27:04+00:00","og_image":[{"width":960,"height":237,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png","type":"image\/png"}],"author":"Melek Durdu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Melek Durdu","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/"},"author":{"name":"Melek Durdu","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b"},"headline":"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2","datePublished":"2022-07-12T18:25:46+00:00","dateModified":"2022-07-12T18:27:04+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/"},"wordCount":201,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/","url":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/","name":"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2 - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png","datePublished":"2022-07-12T18:25:46+00:00","dateModified":"2022-07-12T18:27:04+00:00","description":"In this article, I will talk about how to Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2.Current ORACLE_HOME :","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/1_-BOHU0nQu0A-CtGW8bcMvQ.png","width":960,"height":237},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/12\/upgrade-oracle-database-from-11-2-0-4-to-12-1-0-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Upgrade Oracle Database From 11.2.0.4 To 12.1.0.2"}]},{"@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\/f9c7aff3fe68fef0255caa38a944ce4b","name":"Melek Durdu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g","caption":"Melek Durdu"},"url":"https:\/\/dbtut.com\/index.php\/author\/melekdurdu\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/51542","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\/3068"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=51542"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/51542\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/51543"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=51542"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=51542"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=51542"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}