Checking Patches and Releases

From Calidus HUB
Revision as of 14:43, 2 June 2025 by Anw (talk | contribs) (Initial Creation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Sometimes it is necessary to check whether patches or emergency releases have been made to a system.


Identify the patch or ER

You can identify the patch number from the system e.g. in CTMS:

  • Check your MAIN form - the patch version is shown on the form.

Using this OBS Assist, you can find ERs and patches easily.

  • Go to Category ER or Patches and search for your patch number or ERs.
  • Search for your DevOps number using the search bar at the top - this will show you the patch and ER number on which the devops log was released.
  • Search for the package and version if known using the search bar.


Check the Patch Level

Using PL/SQL deveoper (or other database query tool) check table RELEASE_HISTORY.

select * from release_history
where patch_no like '%47%'
order by version desc, patch_no desc

If the ER number or patch is there, the release has been done and the functionality is available.