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

11
vdh/list_incarnations.sql Normal file
View File

@@ -0,0 +1,11 @@
set linesize 120
set pages 999
column incarnation format a15
column fdo format a5
select rpad(' ', level) || incarnation# incarnation, prior_incarnation#, resetlogs_id, resetlogs_change#,
to_char(resetlogs_time, 'DD/MM/YYYY HH24:MI:SS') resetlogstime, status, flashback_database_allowed fdo
from v$database_incarnation
connect by prior_incarnation# = prior incarnation#
start with prior_incarnation# = 0
order siblings by incarnation#, resetlogs_time;