Files
oracle/vdh/list_archivelog_containing_scn.sql

4 lines
218 B
MySQL
Raw Normal View History

2026-03-12 21:23:47 +01:00
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;