This script can be used for sample data. Thank you.
-- Setup some testdata
if object_id('tempdb..#t_measures') is not null
drop table #t_measures
create table #t_measures (
jobid int, offset int, tempdata float
, dt datetime
)
insert into #t_measures (
jobid, offset, tempdata
)
values (1,...