Baselight
select "year" || '-' || "month" as year_month, new_datasets, new_tables, rows_added,
  SUM(new_datasets) OVER (ORDER BY "year","month"
    ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS new_datasets_cum,
  SUM(new_tables) OVER (ORDER BY "year","month"
    ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS new_tables_cum,
  SUM(rows_added) OVER (ORDER BY "year","month"
    ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS rows_added_cum
from @blt.catalog_metadata.monthly_catalog_stats
order by year, month
year_monthnew_datasetsnew_tablesrows_addednew_datasets_cumnew_tables_cumrows_added_cum
2025-280556531853557697288055653185355769728
2025-3465305071444028302485209582519796052752
2025-418580145448211674299252710024127340963482677
2025-564971534451930984443359725661746156581121
2025-6173163325353105490525091328987051467130173
2025-74931950345808756565140629182086048005829
2025-877146706469230198052177296490150740307809
2025-927691234530723252204296559163085615041

Share link

Anyone who has the link will be able to view this.