You are on page 1of 1

58737314

select a.set_count, a.start_time, a.completion_time, sum(b.blocks)


from v$backup_set a, v$backup_datafile b
where a.set_count=b.set_count
and to_char(a.start_time,'mm/dd/yyyy hh24:mi:ss')=
(select to_char(max(start_time), 'mm/dd/yyyy hh24:mi:ss')
from v$backup_set
where incremental_level=1) group by a.set_count, a.start_time, a.completion_tim
e ;

You might also like