zOs/SQL/TADM62

select year(timestamp), week(timestamp), sum(altSize)
    from oa1p.tadm62a1
    group by year(timestamp), week(timestamp)
    order by year(timestamp) desc, week(timestamp) desc
;
select timestamp, newCount+altCount+oldCount, t.*
    from oa1p.tadm62a1 t
    order by timestamp desc
    with ur