2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

21
vdh/list_db_patches.sql Normal file
View File

@@ -0,0 +1,21 @@
set linesize 250
column bundle_series format a15
column status format a15
column description format a65
column action_time format a20
select
to_char(action_time, 'DD/MM/YYYY HH24:MI') action_time_str,
action,
bundle_series,
patch_id,
patch_uid,
version, status,
description
from
dba_registry_sqlpatch
order
by action_time,
bundle_series,
patch_id
;