{"id":15059,"date":"2024-11-07T00:54:35","date_gmt":"2024-11-07T03:54:35","guid":{"rendered":"https:\/\/dev.dbarj.com.br\/?p=15059"},"modified":"2025-03-10T11:50:40","modified_gmt":"2025-03-10T14:50:40","slug":"downloading-oracle-patches-using-cli-with-autoupgrade-patching","status":"publish","type":"post","link":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/","title":{"rendered":"Downloading Oracle Patches using CLI with AutoUpgrade Patching"},"content":{"rendered":"<p>Since October 2024, the Oracle Database Upgrade team has made many improvements in AutoUpgrade Patching. The most expressive one is adding the capability for it to connect on MOS, download patches automatically, create a new Oracle home with all those patches applied, and finally move the database from the old Oracle home to a new Oracle home.<\/p>\n<p>However, if your database server has no internet connectivity (what is expected) even via proxy, you can download patches on a different server or your own notebook and later moved them to a shared NFS server that this server has access to, for example.<\/p>\n<p>In this article, we will check how this can be performed with AutoUpgrade Patching on 3 different hosts: MacOS, Windows and Linux.<\/p>\n<h3>MacOS<\/h3>\n<p>My working PC is a Mac. After I download the latest version of AU, I need to create a config file.<\/p>\n<p>The only parameters required are the following:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">% cat download.cfg\r\nglobal.global_log_dir=\/Users\/rodrigo.jorge\/test\/AU_Patching\/logs\r\nglobal.keystore=\/Users\/rodrigo.jorge\/test\/AU_Patching\/keys\r\n\r\npatch1.folder=\/Users\/rodrigo.jorge\/test\/AU_Patching\/patches\r\npatch1.patch=RU,DPBP,OPATCH,OJVM\r\npatch1.target_version=19<\/pre>\n<p>So, if I call AU now using this config file:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">% java -jar autoupgrade.jar -patch -config download.cfg -mode download\r\nAutoUpgrade Patching 24.1.241105 launched with default internal options\r\nProcessing config file ...\r\n\r\nThere were conditions found preventing AutoUpgrade Patching from successfully running\r\n\r\n*Downloading Oracle Patch files\r\nPatch query failed\r\n*Operation requires MOS credentials to be loaded into keystore. Use -load_password option*<\/pre>\n<p>It is complaining, of course, that I still haven&#8217;t loaded the MOS Credentials. So it would be impossible to download anything from MOS. So let me load my credentials:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">% java -jar autoupgrade.jar -patch -config download.cfg -load_password\r\nProcessing config file ...\r\n\r\nStarting AutoUpgrade Patching Password Loader - Type help for available options\r\nCreating new AutoUpgrade Patching keystore - Password required\r\nEnter password:        &lt;&lt;&lt; (HERE I TYPE A PASSWORD FOR THE AU WALLET, NOT MY USER PASSWORD)\r\nEnter password again:\r\nAutoUpgrade Patching keystore was successfully created\r\n\r\nMOS&gt; add -user rodrigoaraujorge@hotmail.com\r\nEnter your secret\/Password:\r\nRe-enter your secret\/Password:\r\nMOS&gt; save\r\nConvert the AutoUpgrade Patching keystore to auto-login [YES|NO] ? YES\r\nMOS&gt; exit\r\n\r\nAutoUpgrade Patching Password Loader finished - Exiting AutoUpgrade Patching<\/pre>\n<p>It&#8217;s all set. Please note that I converted the &#8220;AutoUpgrade Patching keystore&#8221; to auto-login, so I don&#8217;t need to retype the wallet password that I created to hold my MOS credentials every time, which is good for automation.<\/p>\n<p>Now, calling AU again to download the files:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">% java -jar autoupgrade.jar -patch -config download.cfg -mode download\r\nAutoUpgrade Patching 24.1.241105 launched with default internal options\r\nProcessing config file ...\r\nLoading AutoUpgrade Patching keystore\r\nAutoUpgrade Patching keystore was successfully loaded\r\n\r\nConnected to MOS - Searching for specified patches\r\n\r\n------------------------------------------------------------------\r\nDownloading files to \/Users\/rodrigo.jorge\/test\/AU_Patching\/patches\r\n------------------------------------------------------------------\r\nDATABASE RELEASE UPDATE 19.25.0.0.0\r\n    File: p36912597_190000_Linux-x86-64.zip - VALIDATED\r\n\r\nDATAPUMP BUNDLE PATCH 19.25.0.0.0\r\n    File: p37056207_1925000DBRU_Generic.zip - VALIDATED\r\n\r\nOJVM RELEASE UPDATE 19.25.0.0.0\r\n    File: p36878697_190000_Linux-x86-64.zip - VALIDATED\r\n\r\nOPatch 12.2.0.1.44 for DB 19.0.0.0.0 (Oct 2024)\r\n    File: p6880880_190000_Linux-x86-64.zip - LOCATED\r\n------------------------------------------------------------------<\/pre>\n<p>As you can see, based on the parameter that I provided, &#8220;patch=RU,DPBP,OPATCH,OJVM,&#8221; it downloads the latest RU (as of today, 19.25), the latest OPATCH, and the OJVM and DPBP related to the downloaded RU.<\/p>\n<p>You could do some other combinations. For example:<\/p>\n<ul>\n<li><strong>patch=RU:19.17,DPBP,OPATCH,OJVM<br \/>\n<\/strong>This will download RU 19.17, latest OPatch, and OJVM 19.17 and DPBP 19.17, because we always download OJVM and DPBP related with the RU.<\/li>\n<li><strong>patch=RU:19.17,DPBP,OPATCH,OJVM:19.25<br \/>\n<\/strong>This will download RU 19.17, latest OPatch, and OJVM 19.25 and DPBP 19.17, because we always specified another OJVM and DPBP is always related with the RU.<\/li>\n<li><strong>patch=RU,OPATCH,<\/strong><span id=\"kmPgTpl:r1:ot71\" class=\"kmContent\"><strong>35197819<br \/>\n<\/strong>This will download latest RU, latest OPatch, and patch 35197819.<\/span><\/li>\n<li><strong>patch=<\/strong><span id=\"kmPgTpl:r1:ot71\" class=\"kmContent\"><strong>35197819<br \/>\n<\/strong>This will download just the patch 35197819. (This is still not supported, RU and OPATCH are always required, but it will be allowed on the next<\/span> releases)<\/li>\n<li><strong>patch=RU:19.26,DPBP,OPATCH,OJVM,MRP<br \/>\n<\/strong>This will download RU 19.26, the latest OPatch, and OJVM 19.26, DPBP 19.26, because we always download OJVM and DPBP related to the RU, and the latest MRP available on top of the 19.26 release. Please note that the latest MRP can change over time (and AU will detect that) as it is released monthly for 6 months for the each RU, starting on 19.17.<\/li>\n<\/ul>\n<p>Please note that if you specify the database version on the patch parameter, like <strong>patch=RU:19.17<\/strong> , it is not required to add the parameter <strong>target_version=19<\/strong> as we already know what is the target version. This is used so the code knows if you want to download patches from 19c, 21c or 23ai. (As of today, only 19c is supported but other versions will be added on the next releases).<\/p>\n<p>But wait! It downloads patches for Linux on my MacOS. What if I wanted to download Windows or AIX or any other platform instead?<\/p>\n<p>Starting on AU release 24.8, you can add:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">patch1.platform=windows.x64<\/pre>\n<p>The current valid values are <strong>aix.x64, arm.x64, linux.x64, solaris.x64, sparc.x64, windows.x64<\/strong>. When not specified, it will default to the system you are. If you are not on a system that is part of the available options, it will default to <strong>linux.x64<\/strong>.<\/p>\n<p>Example of a config file to download Windows patches:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">% cat download.cfg\r\nglobal.global_log_dir=\/Users\/rodrigo.jorge\/test\/AU_Patching\/logs\r\nglobal.keystore=\/Users\/rodrigo.jorge\/test\/AU_Patching\/keys\r\n\r\npatch1.folder=\/Users\/rodrigo.jorge\/test\/AU_Patching\/patches\r\npatch1.patch=RU,OPATCH,OJVM\r\npatch1.target_version=19\r\npatch1.platform=windows.x64<\/pre>\n<p>if I call AU now using this config file:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">% java -jar autoupgrade.jar -patch -config download.cfg -mode download\r\nAutoUpgrade Patching 24.1.241105 launched with default internal options\r\nProcessing config file ...\r\nLoading AutoUpgrade Patching keystore\r\nAutoUpgrade Patching keystore was successfully loaded\r\n\r\nConnected to MOS - Searching for specified patches\r\n\r\n------------------------------------------------------------------\r\nDownloading files to \/Users\/rodrigo.jorge\/test\/AU_Patching\/patches\r\n------------------------------------------------------------------\r\nWINDOWS DATABASE BUNDLE PATCH 19.25.0.0.241015\r\n    File: p36878821_190000_MSWIN-x86-64.zip - VALIDATED\r\n\r\nOJVM RELEASE UPDATE 19.25.0.0.0\r\n    File: p36878697_190000_MSWIN-x86-64.zip - VALIDATED\r\n\r\nOPatch 12.2.0.1.44 for DB 19.0.0.0.0 (Oct 2024)\r\n    File: p6880880_190000_MSWIN-x86-64.zip - VALIDATED\r\n------------------------------------------------------------------\r\n<\/pre>\n<h3>Linux<\/h3>\n<p>If you want to download from Linux, this is exactly the same as in MacOS:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">[oracle@holserv1:~\/test\/AU_Patching]$ cat download.cfg\r\nglobal.global_log_dir=\/home\/oracle\/test\/AU_Patching\/logs\r\nglobal.keystore=\/home\/oracle\/test\/AU_Patching\/keys\r\n\r\npatch1.folder=\/home\/oracle\/test\/AU_Patching\/patches\r\npatch1.patch=RU,DPBP,OPATCH,OJVM\r\npatch1.target_version=19\r\n\r\n\r\n[oracle@holserv1:~\/test\/AU_Patching]$ java -jar autoupgrade.jar -patch -config download.cfg -mode download\r\nAutoUpgrade Patching 24.1.241105 launched with default internal options\r\nProcessing config file ...\r\nLoading AutoUpgrade Patching keystore\r\nAutoUpgrade Patching keystore was successfully loaded\r\n\r\nConnected to MOS - Searching for specified patches\r\n\r\n----------------------------------------------------------\r\nDownloading files to \/home\/oracle\/test\/AU_Patching\/patches\r\n----------------------------------------------------------\r\nDATABASE RELEASE UPDATE 19.25.0.0.0\r\n    File: p36912597_190000_Linux-x86-64.zip - VALIDATED\r\n\r\nDATAPUMP BUNDLE PATCH 19.25.0.0.0\r\n    File: p37056207_1925000DBRU_Generic.zip - VALIDATED\r\n\r\nOJVM RELEASE UPDATE 19.25.0.0.0\r\n    File: p36878697_190000_Linux-x86-64.zip - VALIDATED\r\n\r\nOPatch 12.2.0.1.44 for DB 19.0.0.0.0 (Oct 2024)\r\n    File: p6880880_190000_Linux-x86-64.zip - VALIDATED\r\n----------------------------------------------------------\r\n<\/pre>\n<h3>Windows<\/h3>\n<p>Windows support is already available. You create a config file just like you would on MacOS and Linux and run it.<\/p>\n<p>Example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">global.global_log_dir=C:\\Users\\opc\\Desktop\\AU_Patching\\logs\r\nglobal.keystore=C:\\Users\\opc\\Desktop\\AU_Patching\\keys\r\n\r\npatch1.folder=C:\\Users\\opc\\Desktop\\AU_Patching\\patches\r\npatch1.patch=RU,OPATCH,OJVM\r\npatch1.target_version=19<\/pre>\n<h3>Download<\/h3>\n<p>To download the latest release of AutoUpgrade Patching, please go to: <a href=\"https:\/\/support.oracle.com\/epmos\/faces\/DocumentDisplay?id=2485457.1\" target=\"_blank\" rel=\"noopener\">https:\/\/support.oracle.com\/epmos\/faces\/DocumentDisplay?id=2485457.1<\/a><\/p>\n<h3>Learn More<\/h3>\n<p>If you want to learn more about the tool, I really recommend watching our VC#21 1h video:<\/p>\n<div class=\"embed-container\"><iframe loading=\"lazy\" title=\"Virtual Classroom #21: One-Button Patching with AutoUpgrade - Making every DBA&#039;s life easier\" width=\"870\" height=\"489\" src=\"https:\/\/www.youtube.com\/embed\/brnBavVLyM0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/div>\n<b>Have you enjoyed? Please leave a comment or give a ?!<\/b>\n<div class='watch-action'><div class='watch-position align-left'><div class='action-like'><a class='lbg-style2 like-15059 jlk' href='javascript:void(0)' data-task='like' data-post_id='15059' data-nonce='b7aaf4ff99' rel='nofollow'><img class='wti-pixel' src='https:\/\/dev.dbarj.com.br\/wp-content\/plugins\/wti-like-post\/images\/pixel.gif' title='Like' \/><span class='lc-15059 lc'>+1<\/span><\/a><\/div><\/div> <div class='status-15059 status align-left'><\/div><\/div><div class='wti-clear'><\/div>","protected":false},"excerpt":{"rendered":"<p>Since October 2024, the Oracle Database Upgrade team has made many improvements in AutoUpgrade Patching. The most expressive one is adding the capability for it to connect on MOS, download patches automatically, create a new Oracle home with all those patches applied, and finally move the database from the old Oracle home to a new &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/\">Continue reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":15063,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[61],"tags":[],"class_list":["post-15059","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-patching","item-wrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Downloading Oracle Patches using CLI with AutoUpgrade Patching - DBA - Rodrigo Jorge - Oracle Tips and Guides<\/title>\n<meta name=\"description\" content=\"This article will show how you can download multiple patches from MOS using AutoUpgrade Patching official tool.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DBA RJ\" \/>\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:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/\"},\"author\":{\"name\":\"DBA RJ\",\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"headline\":\"Downloading Oracle Patches using CLI with AutoUpgrade Patching\",\"datePublished\":\"2024-11-07T03:54:35+00:00\",\"dateModified\":\"2025-03-10T14:50:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/\"},\"wordCount\":703,\"commentCount\":10,\"publisher\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"image\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/dev.dbarj.com.br\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/gavin-allanwood-qyY9iScMu6w-unsplash-scaled.jpg\",\"articleSection\":[\"Patching\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/\",\"url\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/\",\"name\":\"Downloading Oracle Patches using CLI with AutoUpgrade Patching - DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/dev.dbarj.com.br\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/gavin-allanwood-qyY9iScMu6w-unsplash-scaled.jpg\",\"datePublished\":\"2024-11-07T03:54:35+00:00\",\"dateModified\":\"2025-03-10T14:50:40+00:00\",\"description\":\"This article will show how you can download multiple patches from MOS using AutoUpgrade Patching official tool.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/#primaryimage\",\"url\":\"https:\\\/\\\/dev.dbarj.com.br\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/gavin-allanwood-qyY9iScMu6w-unsplash-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/dev.dbarj.com.br\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/gavin-allanwood-qyY9iScMu6w-unsplash-scaled.jpg\",\"width\":2560,\"height\":1707,\"caption\":\"Photo by Gavin Allanwood on Unsplash\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/2024\\\/11\\\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Downloading Oracle Patches using CLI with AutoUpgrade Patching\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/\",\"name\":\"DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"description\":\"Blog about Databases, Security and High Availability\",\"publisher\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\",\"name\":\"DBA RJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"url\":\"https:\\\/\\\/dev.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"contentUrl\":\"https:\\\/\\\/dev.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"width\":712,\"height\":712,\"caption\":\"DBA RJ\"},\"logo\":{\"@id\":\"https:\\\/\\\/dev.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Downloading Oracle Patches using CLI with AutoUpgrade Patching - DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"This article will show how you can download multiple patches from MOS using AutoUpgrade Patching official tool.","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:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/","twitter_misc":{"Written by":"DBA RJ","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/#article","isPartOf":{"@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/"},"author":{"name":"DBA RJ","@id":"https:\/\/dev.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"headline":"Downloading Oracle Patches using CLI with AutoUpgrade Patching","datePublished":"2024-11-07T03:54:35+00:00","dateModified":"2025-03-10T14:50:40+00:00","mainEntityOfPage":{"@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/"},"wordCount":703,"commentCount":10,"publisher":{"@id":"https:\/\/dev.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"image":{"@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/#primaryimage"},"thumbnailUrl":"https:\/\/dev.dbarj.com.br\/wp-content\/uploads\/2024\/11\/gavin-allanwood-qyY9iScMu6w-unsplash-scaled.jpg","articleSection":["Patching"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/","url":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/","name":"Downloading Oracle Patches using CLI with AutoUpgrade Patching - DBA - Rodrigo Jorge - Oracle Tips and Guides","isPartOf":{"@id":"https:\/\/dev.dbarj.com.br\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/#primaryimage"},"image":{"@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/#primaryimage"},"thumbnailUrl":"https:\/\/dev.dbarj.com.br\/wp-content\/uploads\/2024\/11\/gavin-allanwood-qyY9iScMu6w-unsplash-scaled.jpg","datePublished":"2024-11-07T03:54:35+00:00","dateModified":"2025-03-10T14:50:40+00:00","description":"This article will show how you can download multiple patches from MOS using AutoUpgrade Patching official tool.","breadcrumb":{"@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/#primaryimage","url":"https:\/\/dev.dbarj.com.br\/wp-content\/uploads\/2024\/11\/gavin-allanwood-qyY9iScMu6w-unsplash-scaled.jpg","contentUrl":"https:\/\/dev.dbarj.com.br\/wp-content\/uploads\/2024\/11\/gavin-allanwood-qyY9iScMu6w-unsplash-scaled.jpg","width":2560,"height":1707,"caption":"Photo by Gavin Allanwood on Unsplash"},{"@type":"BreadcrumbList","@id":"https:\/\/dev.dbarj.com.br\/en\/2024\/11\/downloading-oracle-patches-using-cli-with-autoupgrade-patching\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dev.dbarj.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Downloading Oracle Patches using CLI with AutoUpgrade Patching"}]},{"@type":"WebSite","@id":"https:\/\/dev.dbarj.com.br\/en\/#website","url":"https:\/\/dev.dbarj.com.br\/en\/","name":"DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"Blog about Databases, Security and High Availability","publisher":{"@id":"https:\/\/dev.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dev.dbarj.com.br\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/dev.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9","name":"DBA RJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dev.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","url":"https:\/\/dev.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","contentUrl":"https:\/\/dev.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","width":712,"height":712,"caption":"DBA RJ"},"logo":{"@id":"https:\/\/dev.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png"}}]}},"_links":{"self":[{"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/15059","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/comments?post=15059"}],"version-history":[{"count":5,"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/15059\/revisions"}],"predecessor-version":[{"id":15069,"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/15059\/revisions\/15069"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/media\/15063"}],"wp:attachment":[{"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/media?parent=15059"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/categories?post=15059"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dev.dbarj.com.br\/en\/wp-json\/wp\/v2\/tags?post=15059"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}