From 772e03eea16fd86d19db463db6cda9f5612be409 Mon Sep 17 00:00:00 2001 From: yuki-tei <57980555+yuki-tei@users.noreply.github.com> Date: Thu, 28 Sep 2023 17:35:10 +0900 Subject: [PATCH 1/2] Update 05_performing_a_minor_version_update_of_an_rpm_installation.mdx add some edb_sqlpatch information on minor version up page --- ..._minor_version_update_of_an_rpm_installation.mdx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/product_docs/docs/epas/15/upgrading/05_performing_a_minor_version_update_of_an_rpm_installation.mdx b/product_docs/docs/epas/15/upgrading/05_performing_a_minor_version_update_of_an_rpm_installation.mdx index 2089c8198a8..2788ea56d69 100644 --- a/product_docs/docs/epas/15/upgrading/05_performing_a_minor_version_update_of_an_rpm_installation.mdx +++ b/product_docs/docs/epas/15/upgrading/05_performing_a_minor_version_update_of_an_rpm_installation.mdx @@ -27,3 +27,16 @@ yum update edb* The `yum update` command performs an update only between minor releases. To update between major releases, use `pg_upgrade`. For more information about using `yum` commands and options, enter `yum --help` at the command line. + +!!! If edb_sqlpatch result gives below message, it is necessary to execute edb_sqlpatch for system catalog. + Here is an output example: + ```shell + * database edb + 0 patches were previously applied to this database. + 58 patches need to be applied to this database. + ``` + In this case , you need to execute this post rpm update: + ```shell + edb_sqlpatch -af + ``` +For more information about using `edb_sqlpatch` commands and options, please see [edb_sqlpatch](https://www.enterprisedb.com/docs/tools/edb_sqlpatch/#overview) page. From 02711208dcb7b3ce6b9c5b3533160493b90c365d Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com> Date: Tue, 3 Oct 2023 09:12:54 +0100 Subject: [PATCH 2/2] Minor version update sqlpatch text modified --- ..._version_update_of_an_rpm_installation.mdx | 33 ++++++++++++------- 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/product_docs/docs/epas/15/upgrading/05_performing_a_minor_version_update_of_an_rpm_installation.mdx b/product_docs/docs/epas/15/upgrading/05_performing_a_minor_version_update_of_an_rpm_installation.mdx index 2788ea56d69..6d9e22f6863 100644 --- a/product_docs/docs/epas/15/upgrading/05_performing_a_minor_version_update_of_an_rpm_installation.mdx +++ b/product_docs/docs/epas/15/upgrading/05_performing_a_minor_version_update_of_an_rpm_installation.mdx @@ -28,15 +28,24 @@ yum update edb* For more information about using `yum` commands and options, enter `yum --help` at the command line. -!!! If edb_sqlpatch result gives below message, it is necessary to execute edb_sqlpatch for system catalog. - Here is an output example: - ```shell - * database edb - 0 patches were previously applied to this database. - 58 patches need to be applied to this database. - ``` - In this case , you need to execute this post rpm update: - ```shell - edb_sqlpatch -af - ``` -For more information about using `edb_sqlpatch` commands and options, please see [edb_sqlpatch](https://www.enterprisedb.com/docs/tools/edb_sqlpatch/#overview) page. +!!! Important + +If upgrading to version 15.4, or later, you should run `edb_sqlpatch` + +If the command responds that it has a number of patches needing to be applied like so: + +```console +* database edb +0 patches were previously applied to this database. +58 patches need to be applied to this database. +``` + +Then it will be necessary to execute edb_sqlpatch to patch the system catalog. Run: + +```shell +edb_sqlpatch -af +``` + +!!! + +For more information about using `edb_sqlpatch` commands and options, please see [edb_sqlpatch](/tools/edb_sqlpatch/) page.