Login  Register

Re: Last PSU

Posted by ErmanArslansOracleBlog on Nov 10, 2021; 9:01am
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/Last-PSU-tp10408p10409.html

Yours seems like Jan 2015 PSU.
This one -> Bug 19769489 - 11.2.0.4.5 (Jan 2015) Database Patch Set Update (DB PSU)

For 11G; check with the query below;

SELECT TO_CHAR(action_time, 'DD-MON-YYYY HH24:MI:SS') AS action_time,
       action,
       namespace,
       version,
       id,
       comments,
       bundle_series
FROM   sys.registry$history
ORDER by action_time;

The following might also help;

SELECT comments, version, action, TO_CHAR(action_time, 'DD-MON-YYYY HH24:MI:SS') AS action_time
FROM   sys.registry$history
WHERE  comments LIKE '%PSU%'
AND    action = 'APPLY';