I have the following table
table event(
start_tstamp [datetime],
stop_tstamp [datetime],
exe_name [nvarchar](50),
machine_name [nvarchar](30)
)
I'd need to generate a scalar table from this table that contains one line of information for every hour difference between start_tstamp and stop_tstamp of the following form:
table event_temp(
day_occured [datetime],
hour_occured [tinyint],
exe_name [nvarchar](50),
machine_name [nvarchar](30)
)
for example table event contains two lines
"2012/12/10 07:00", "2012/12/10 09:00", "notepad.exe", "testmachine"
"2012/12/11 15:00", "2012/12/11 18:00", "notepad.exe", "foomachine"
The resulting event_temp should be the following
"2012/12/10 00:00", 7, "notepad.exe", "testmachine"
"2012/12/10 00:00", 8, "notepad.exe", "testmachine"
"2012/12/10 00:00", 9, "notepad.exe", "testmachine"
"2012/12/11 00:00", 15, "notepad.exe", "foomachine"
"2012/12/11 00:00", 16, "notepad.exe", "foomachine"
"2012/12/11 00:00", 17, "notepad.exe", "foomachine"
"2012/12/11 00:00", 18, "notepad.exe", "foomachine"
I then need to join the event_temp table with an existing calendar table that returns a list of dates that match those in event_temp
table calendar(
day_occured [datetime],
hour_occured [tinyint],
)
That would just contain:
"2012/12/10 00:00", 0
"2012/12/10 00:00", 1
"2012/12/10 00:00", 2
"2012/12/10 00:00", 3
"2012/12/10 00:00", 4
"2012/12/10 00:00", 5
...
The result should basically be a list of how many instances of notepad where running at a certain hour in time.
table result(
day_occured [datetime],
hour_occured [tinyint],
instances_running [int]
)
Any ideas how to accomplish this?
datetime(which means we're all probably going to assume this is SQL Server, is this correct?), why do you have thehour_occuredcolumn? – Clockwork-Muse Dec 12 '12 at 17:10count(distinct machine_name) as instances_running / group by day, hour, right? I don't see why you need the calendar table. – Beth Dec 12 '12 at 20:27