[racdb1:/home/oracle]> sqlplus / as sysdba
SQL*Plus: Release 19.0.0.0.0 - Production on Mon Aug 26 13:42:42 2019
Version 19.4.0.0.0
Copyright (c) 1982, 2019, Oracle. All rights reserved.
Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.4.0.0.0
SQL> set lines 100
SQL> col NAME form a10
SQL> select NAME, OPEN_MODE from V$PDBS;
NAME OPEN_MODE
---------- ----------
PDB$SEED READ ONLY
PDB READ WRITE
SQL> col STATUS form a10
SQL> col ACTION_TIME form a25
SQL> select PATCH_ID, ACTION, STATUS, ACTION_TIME, SOURCE_VERSION, TARGET_VERSION from DBA_REGISTRY_SQLPATCH;
PATCH_ID ACTION STATUS ACTION_TIME SOURCE_VERSION TARGET_VERSION
---------- --------------- ---------- ------------------------- --------------- ---------------
29517242 APPLY SUCCESS 19/08/24 14:38:46.385562 19.1.0.0.0 19.3.0.0.0
29834717 APPLY SUCCESS 19/08/26 11:42:17.845203 19.3.0.0.0 19.4.0.0.0
SQL> col TIME form a25
SQL> col NAME form a10
SQL> col CAUSE form a10
SQL> col MESSAGE form a150
SQL> select TIME, NAME, CAUSE, STATUS, MESSAGE from PDB_PLUG_IN_VIOLATIONS;
TIME NAME CAUSE STATUS MESSAGE
------------------------- ---------- ---------- ---------- ------------------------------------------------------------------------------------------------------------------------------------------------------
19/08/24 15:01:56.279107 PDB$SEED SQL Patch RESOLVED '19.3.0.0.0 Release_Update 1904101227' is installed in the CDB but no release updates are installed in the PDB
19/08/26 13:29:21.177332 PDB SQL Patch PENDING '19.4.0.0.0 Release_Update 1906261711' is installed in the CDB but '19.3.0.0.0 Release_Update 1904101227' is installed in the PDB
SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.4.0.0.0 |