oracle psu patches
1. latest oracle security patch details ( risk matrix ). please refer below oracle reference page.
Critical Patch Updates, Security Alerts and Bulletins (oracle.com)
2. Please refer below oracle reference page for patch numbers.
Oracle Database 19c Proactive Patch Information
Query:
set linesize 500
set pagesize 1000
set serverout on
set long 2000000
col action_time for a12
col action for a10
col comments for a30
col description for a60
col namespace for a20
col status for a10
select to_char(action_time, 'YYYY-MM-DD') as action_time,action,status,description,patch_id from sys.dba_registry_sqlpatch order by action_time;
PDB Violations:
col time for a20
col name for a20
col cause for a20
col message for a40
col action for a40
set lines 300
select * from pdb_plug_in_violations;
Comments
Post a Comment