Files
oracle/vdh/list_archivelog_containing_scn.sql
2026-03-12 21:23:47 +01:00

4 lines
218 B
SQL

select resetlogs_id, thread#, sequence#, to_char(next_time, 'DD/MM/YYYY HH24:MI:SS') nexttime, name
from v$archived_log
where &scn between first_change# and next_change#
order by resetlogs_id, thread#, sequence#, name;