Help With Query

  • I need help with a query. For some reason I just can't get my hands around how to do this.

    I have a table with 4 colums: meter_data_dmd_time, meter_data1, station, meter_data_meter_id

    I have 20 stations and each station has a meter and that meter takes a sample every 15 minutes.

    I need to sum all the meter readings for each HOUR between two time periods and take the average.

    If I execute the query below I will get summed readings for each 15 minute interval. I need them for each hour so I need to sum the 15 minute intervals and divide by 4 for the average.

    Here is the query:

    select meter_data_dmd_time, sum(meter_data1) from meter_data_table

    where meter_data_dmd_time between '2011-02-01' and '2011-03-01'

    group by meter_data_dmd_time

    I get results like this

    2011-02-01 00:00:00.00094879.8065838623

    2011-02-01 00:15:00.00094641.639319458

    2011-02-01 00:30:00.00093853.449708252

    2011-02-01 00:45:00.00093683.9327050781

    2011-02-01 01:00:00.00093699.4391833496

    2011-02-01 01:15:00.00093065.4496533203

    2011-02-01 01:30:00.00092885.5480053711

    2011-02-01 01:45:00.00092696.2549700928

    2011-02-01 02:00:00.00092791.7338574219

    I need all the 00 hour readings summed and averaged (divide by 4) and so on for each hour of each day in the between clause.

    Any help would be greatly appreciated as I just am having a heck of time with this. I am a novice sql person but I'm sure I've done this before. ugggghhh

  • Please provide table definition and ready to use sample data as described in the first link in my signature. Also, please provide your expected result based on those samples together with what you've tried so far.



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • Based on your forum etiquette I did a hack job on this post so I deleted what was in here and will post again in a bit when I get it right. Hopefully you never saw what was there! 😀

    Paul

  • phood (3/3/2011)


    Based on your forum etiquette I did a hack job on this post so I deleted what was in here and will post again in a bit when I get it right. Hopefully you never saw what was there! 😀

    Paul

    You'll never know :-D;-)

    (But it doesn't matter either...)



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • Absolutely right, I will never know for sure! Okay, I am pasting what I HOPE is correct below based on your well written (by the way) etiquette page. The data I have for the insert is for ONE HOUR so the output I need would be:

    Feb 1 2011 00:00AM 94264.7070791626

    It would continue hour by hour summing and averaging each hour's data. Here is what you asked for and again, I HOPE I got it right. I used the CREATE TO new query window on my table so hopefully that was okay.

    --===== If the test table already exists, drop it

    IF OBJECT_ID('TempDB..#paulstable','U') IS NOT NULL

    DROP TABLE #paulstable

    --===== Create the test table with

    CREATE TABLE #paulstable(

    [Meter_Data_DMD_Time] [datetime] NOT NULL,

    [Meter_Data1] [float] NULL,

    [Station] [varchar](40) NOT NULL,

    [Meter_Data_Meter_ID] [varchar](10) NULL,

    PRIMARY KEY CLUSTERED

    (

    [Meter_Data_DMD_Time] ASC,

    [Station] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]

    ) ON [PRIMARY]

    --===== All Inserts into the IDENTITY column

    SET IDENTITY_INSERT #paulstable ON

    --===== Insert the test data into the test table

    INSERT INTO #paulstable

    (meter_data_dmd_time, meter_data1, station, meter_data_meter_id)

    select 'Feb 1 2011 12:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:00AM','18657.7','Airport Sub','0' union all

    select 'Feb 1 2011 12:00AM','-12.9022','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:00AM','-11.5837','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:00AM','9356.27','Battery Heights','0' union all

    select 'Feb 1 2011 12:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:00AM','2298.79','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:00AM','3705.3','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:00AM','10029.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:00AM','9850.92','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:00AM','8336.21','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:00AM','11555.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:00AM','12624','Point of Woods','0' union all

    select 'Feb 1 2011 12:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:00AM','8489.51','Prince William S','0' union all

    select 'Feb 1 2011 12:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:15AM','18674.2','Airport Sub','0' union all

    select 'Feb 1 2011 12:15AM','-12.9433','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:15AM','-11.6278','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:15AM','9403.09','Battery Heights','0' union all

    select 'Feb 1 2011 12:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:15AM','2305.33','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:15AM','3691.49','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:15AM','10102.3','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:15AM','9830.12','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:15AM','8104.26','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:15AM','11654.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:15AM','12486.7','Point of Woods','0' union all

    select 'Feb 1 2011 12:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:15AM','8414.64','Prince William S','0' union all

    select 'Feb 1 2011 12:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:30AM','18329.8','Airport Sub','0' union all

    select 'Feb 1 2011 12:30AM','-13.286','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:30AM','-11.8725','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:30AM','9217.25','Battery Heights','0' union all

    select 'Feb 1 2011 12:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:30AM','2326.16','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:30AM','3693.28','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:30AM','10197.9','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:30AM','9812.85','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:30AM','8088.44','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:30AM','11706.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:30AM','12150.1','Point of Woods','0' union all

    select 'Feb 1 2011 12:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:30AM','8356.71','Prince William S','0' union all

    select 'Feb 1 2011 12:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:45AM','18342.8','Airport Sub','0' union all

    select 'Feb 1 2011 12:45AM','-13.3583','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:45AM','-11.8578','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:45AM','9049.57','Battery Heights','0' union all

    select 'Feb 1 2011 12:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:45AM','2331.21','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:45AM','3664.14','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:45AM','10168.5','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:45AM','9856.63','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:45AM','8114.43','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:45AM','11670.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:45AM','12158','Point of Woods','0' union all

    select 'Feb 1 2011 12:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:45AM','8352.94','Prince William S','0'

    --===== Set the identity insert back to normal

    SET IDENTITY_INSERT #paulstable OFF

  • Just an FYI, always do a run on your code first before posting it, if able. You didn't have an Identity column in the temp table, so SET failed. No biggie though. It would also help to have two hours to work with, but again, not a big deal.

    Alright, you're obviously familiar with the easy way to do this:

    SELECT AVG( meter_data1) FROM #paulstable

    Now, that'll just average all the data, and not sum by hour and THEN average.

    So, you were on the right track, but the trick will be to getting your #'s figured out.

    This code should do it. However, I didn't get the same total you did, but I'll leave that to you to confirm. The CTE gets the sum by hour. The second call to the CTE figures out your average across the timespan.

    You can see what the cte returns by simply uncommenting the select * from cte and not running the last statement.

    DECLARE @startDT DATETIME,

    @endDT DATETIME

    SELECT @startDT = 'Feb 1 2011 12:00AM',

    @endDT = 'Feb 1 2011 2:00PM'

    ;with cte AS

    (

    SELECT

    DATEDIFF( hh, @startDT, meter_data_dmd_time) AS hourGroup,

    SUM( meter_data1) AS TotalMeterData

    FROM

    #paulstable

    WHERE

    meter_data_dmd_time >= @startDT and meter_data_dmd_time <= @endDT

    GROUP BY

    DATEDIFF( hh, @startDT, meter_data_dmd_time)

    )

    -- SELECT * FROM cte

    SELECT

    @startDT as BeginningTime,

    @endDT AS EndingTime,

    AVG( TotalMeterData) AS DataAverage

    FROM

    cte


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • This:

    DECLARE @startDT DATETIME,

    @endDT DATETIME

    SELECT @startDT = 'Feb 1 2011 12:00AM',

    @endDT = 'Feb 1 2011 2:00PM'

    SELECT CAST( Meter_Data_DMD_Time AS DATE) Date_Part

    ,DATEPART(hh ,Meter_Data_DMD_Time) Hour_Part

    ,AVG(Meter_Data1) AVG_Reading

    FROM #paulstable

    WHERE meter_data_dmd_time >= @startDT and meter_data_dmd_time <= @endDT

    GROUP BY CAST( Meter_Data_DMD_Time AS DATE), DATEPART(hh ,Meter_Data_DMD_Time)

  • Let me provide you with more data. If I run your statement against all the data as you left it, I only get one result for multiple hours. Each hour should have it's own set of data. Also, if I run your statements for just start time of 12am to 12:59am, the result, I believe, is the average of all the data, but still must be divided by 4 to get the actual average. If I divide your result by 4 I get exactly what I need. It is all the data summed up and divided by 4 for each hour. The next post, don't think it was yours, is on the right track with providing hour by hour data, but the result is incorrect. Before I give you more data let's see if I can explain it better with a little less data because there's a lot of data to work with.

    Let's say I only have two stations and I will use feb 1 2011 as the day and 12am to 2am as the time between data sets. I truly appreciate your help. Thanks for bearing with me and my novice abilities.

    1200am station1 = 10, station2 = 20

    1215am station1 = 11, station2 = 18

    1230am station1 = 19, station2 = 11

    1245am station1 = 15, station2 = 15

    100am station1 = 20, station2 = 16

    115am station1 = 14, station2 = 22

    130am station1 = 10, station2 = 17

    145am station1 = 12, station2 = 45

    So the result should be for the hour of 12am ((10 + 20) + (11+18) + (19 + 11) + (15 + 15))/4 or 29.75

    The result for the hour of 1am ((20 + 16) + (14 + 22) + (10 + 17) + (12 + 45))/4 or 39

    A result query would look like

    2011-02-01 00:00 29.75

    2011-02-01 01:00 39

    and so on for each hour of each day. Sometimes I'm not so good with explaining myself, sorry.

    Here is more data and I didn't provide you with it the first time because I just thought it was going to be A LOT of data.

    select 'Feb 1 2011 12:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:00AM','18657.7','Airport Sub','0' union all

    select 'Feb 1 2011 12:00AM','-12.9022','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:00AM','-11.5837','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:00AM','9356.27','Battery Heights','0' union all

    select 'Feb 1 2011 12:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:00AM','2298.79','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:00AM','3705.3','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:00AM','10029.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:00AM','9850.92','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:00AM','8336.21','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:00AM','11555.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:00AM','12624','Point of Woods','0' union all

    select 'Feb 1 2011 12:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:00AM','8489.51','Prince William S','0' union all

    select 'Feb 1 2011 12:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:15AM','18674.2','Airport Sub','0' union all

    select 'Feb 1 2011 12:15AM','-12.9433','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:15AM','-11.6278','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:15AM','9403.09','Battery Heights','0' union all

    select 'Feb 1 2011 12:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:15AM','2305.33','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:15AM','3691.49','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:15AM','10102.3','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:15AM','9830.12','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:15AM','8104.26','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:15AM','11654.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:15AM','12486.7','Point of Woods','0' union all

    select 'Feb 1 2011 12:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:15AM','8414.64','Prince William S','0' union all

    select 'Feb 1 2011 12:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:30AM','18329.8','Airport Sub','0' union all

    select 'Feb 1 2011 12:30AM','-13.286','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:30AM','-11.8725','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:30AM','9217.25','Battery Heights','0' union all

    select 'Feb 1 2011 12:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:30AM','2326.16','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:30AM','3693.28','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:30AM','10197.9','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:30AM','9812.85','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:30AM','8088.44','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:30AM','11706.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:30AM','12150.1','Point of Woods','0' union all

    select 'Feb 1 2011 12:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:30AM','8356.71','Prince William S','0' union all

    select 'Feb 1 2011 12:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:45AM','18342.8','Airport Sub','0' union all

    select 'Feb 1 2011 12:45AM','-13.3583','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:45AM','-11.8578','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:45AM','9049.57','Battery Heights','0' union all

    select 'Feb 1 2011 12:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:45AM','2331.21','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:45AM','3664.14','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:45AM','10168.5','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:45AM','9856.63','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:45AM','8114.43','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:45AM','11670.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:45AM','12158','Point of Woods','0' union all

    select 'Feb 1 2011 12:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:45AM','8352.94','Prince William S','0' union all

    select 'Feb 1 2011 1:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 1:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 1:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 1:00AM','18281.2','Airport Sub','0' union all

    select 'Feb 1 2011 1:00AM','-12.8151','BATT CHST 125','0' union all

    select 'Feb 1 2011 1:00AM','-11.4306','BATT CHST 346','0' union all

    select 'Feb 1 2011 1:00AM','8966.38','Battery Heights','0' union all

    select 'Feb 1 2011 1:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 1:00AM','2339.92','Lomar Sub 600','0' union all

    select 'Feb 1 2011 1:00AM','3638.67','Lomar Sub 601','0' union all

    select 'Feb 1 2011 1:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 1:00AM','10167.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 1:00AM','9894.77','Micron Sub 501','0' union all

    select 'Feb 1 2011 1:00AM','8212.11','Micron Sub 502','0' union all

    select 'Feb 1 2011 1:00AM','11654','Micron Sub 503','0' union all

    select 'Feb 1 2011 1:00AM','12248.2','Point of Woods','0' union all

    select 'Feb 1 2011 1:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 1:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 1:00AM','8320.74','Prince William S','0' union all

    select 'Feb 1 2011 1:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 1:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 1:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 1:15AM','18062.9','Airport Sub','0' union all

    select 'Feb 1 2011 1:15AM','-12.8391','BATT CHST 125','0' union all

    select 'Feb 1 2011 1:15AM','-10.9888','BATT CHST 346','0' union all

    select 'Feb 1 2011 1:15AM','8902.17','Battery Heights','0' union all

    select 'Feb 1 2011 1:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 1:15AM','2385.17','Lomar Sub 600','0' union all

    select 'Feb 1 2011 1:15AM','3637.55','Lomar Sub 601','0' union all

    select 'Feb 1 2011 1:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 1:15AM','10109.9','Micron Sub 500','0' union all

    select 'Feb 1 2011 1:15AM','9867.32','Micron Sub 501','0' union all

    select 'Feb 1 2011 1:15AM','8238.12','Micron Sub 502','0' union all

    select 'Feb 1 2011 1:15AM','11579.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 1:15AM','12141.7','Point of Woods','0' union all

    select 'Feb 1 2011 1:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 1:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 1:15AM','8165.41','Prince William S','0' union all

    select 'Feb 1 2011 1:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 1:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 1:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 1:30AM','17959.5','Airport Sub','0' union all

    select 'Feb 1 2011 1:30AM','-13.0128','BATT CHST 125','0' union all

    select 'Feb 1 2011 1:30AM','-11.014','BATT CHST 346','0' union all

    select 'Feb 1 2011 1:30AM','8865.87','Battery Heights','0' union all

    select 'Feb 1 2011 1:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 1:30AM','2427.72','Lomar Sub 600','0' union all

    select 'Feb 1 2011 1:30AM','3639.09','Lomar Sub 601','0' union all

    select 'Feb 1 2011 1:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 1:30AM','10141.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 1:30AM','9824.54','Micron Sub 501','0' union all

    select 'Feb 1 2011 1:30AM','8218.3','Micron Sub 502','0' union all

    select 'Feb 1 2011 1:30AM','11514.6','Micron Sub 503','0' union all

    select 'Feb 1 2011 1:30AM','12217','Point of Woods','0' union all

    select 'Feb 1 2011 1:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 1:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 1:30AM','8101.16','Prince William S','0' union all

    select 'Feb 1 2011 1:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 1:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 1:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 1:45AM','17901.1','Airport Sub','0' union all

    select 'Feb 1 2011 1:45AM','-12.9138','BATT CHST 125','0' union all

    select 'Feb 1 2011 1:45AM','-10.8822','BATT CHST 346','0' union all

    select 'Feb 1 2011 1:45AM','8811.4','Battery Heights','0' union all

    select 'Feb 1 2011 1:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 1:45AM','2415.94','Lomar Sub 600','0' union all

    select 'Feb 1 2011 1:45AM','3641.37','Lomar Sub 601','0' union all

    select 'Feb 1 2011 1:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 1:45AM','10042.8','Micron Sub 500','0' union all

    select 'Feb 1 2011 1:45AM','9841.31','Micron Sub 501','0' union all

    select 'Feb 1 2011 1:45AM','8254.64','Micron Sub 502','0' union all

    select 'Feb 1 2011 1:45AM','11474.4','Micron Sub 503','0' union all

    select 'Feb 1 2011 1:45AM','12126.1','Point of Woods','0' union all

    select 'Feb 1 2011 1:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 1:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 1:45AM','8211.07','Prince William S','0' union all

    select 'Feb 1 2011 2:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 2:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 2:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 2:00AM','17941.7','Airport Sub','0' union all

    select 'Feb 1 2011 2:00AM','-12.6667','BATT CHST 125','0' union all

    select 'Feb 1 2011 2:00AM','-10.8806','BATT CHST 346','0' union all

    select 'Feb 1 2011 2:00AM','8812.68','Battery Heights','0' union all

    select 'Feb 1 2011 2:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 2:00AM','2431.87','Lomar Sub 600','0' union all

    select 'Feb 1 2011 2:00AM','3638.85','Lomar Sub 601','0' union all

    select 'Feb 1 2011 2:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 2:00AM','10074.3','Micron Sub 500','0' union all

    select 'Feb 1 2011 2:00AM','9818.13','Micron Sub 501','0' union all

    select 'Feb 1 2011 2:00AM','8335.83','Micron Sub 502','0' union all

    select 'Feb 1 2011 2:00AM','11443.3','Micron Sub 503','0' union all

    select 'Feb 1 2011 2:00AM','12032','Point of Woods','0' union all

    select 'Feb 1 2011 2:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 2:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 2:00AM','8286.64','Prince William S','0' union all

    select 'Feb 1 2011 2:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 2:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 2:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 2:15AM','17958.3','Airport Sub','0' union all

    select 'Feb 1 2011 2:15AM','-12.6467','BATT CHST 125','0' union all

    select 'Feb 1 2011 2:15AM','-10.9053','BATT CHST 346','0' union all

    select 'Feb 1 2011 2:15AM','8829.06','Battery Heights','0' union all

    select 'Feb 1 2011 2:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 2:15AM','2432.07','Lomar Sub 600','0' union all

    select 'Feb 1 2011 2:15AM','3657.03','Lomar Sub 601','0' union all

    select 'Feb 1 2011 2:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 2:15AM','10050.1','Micron Sub 500','0' union all

    select 'Feb 1 2011 2:15AM','9819.68','Micron Sub 501','0' union all

    select 'Feb 1 2011 2:15AM','8392.88','Micron Sub 502','0' union all

    select 'Feb 1 2011 2:15AM','11439.5','Micron Sub 503','0' union all

    select 'Feb 1 2011 2:15AM','12108.7','Point of Woods','0' union all

    select 'Feb 1 2011 2:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 2:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 2:15AM','8392.34','Prince William S','0' union all

    select 'Feb 1 2011 2:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 2:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 2:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 2:30AM','18051.3','Airport Sub','0' union all

    select 'Feb 1 2011 2:30AM','-12.6477','BATT CHST 125','0' union all

    select 'Feb 1 2011 2:30AM','-10.7394','BATT CHST 346','0' union all

    select 'Feb 1 2011 2:30AM','8792.24','Battery Heights','0' union all

    select 'Feb 1 2011 2:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 2:30AM','2413.91','Lomar Sub 600','0' union all

    select 'Feb 1 2011 2:30AM','3677.99','Lomar Sub 601','0' union all

    select 'Feb 1 2011 2:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 2:30AM','10020.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 2:30AM','9823.71','Micron Sub 501','0' union all

    select 'Feb 1 2011 2:30AM','8398.07','Micron Sub 502','0' union all

    select 'Feb 1 2011 2:30AM','11490.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 2:30AM','12178.7','Point of Woods','0' union all

    select 'Feb 1 2011 2:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 2:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 2:30AM','8304.93','Prince William S','0' union all

    select 'Feb 1 2011 2:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 2:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 2:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 2:45AM','18220.2','Airport Sub','0' union all

    select 'Feb 1 2011 2:45AM','-12.4209','BATT CHST 125','0' union all

    select 'Feb 1 2011 2:45AM','-10.7292','BATT CHST 346','0' union all

    select 'Feb 1 2011 2:45AM','8782.49','Battery Heights','0' union all

    select 'Feb 1 2011 2:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 2:45AM','2348.67','Lomar Sub 600','0' union all

    select 'Feb 1 2011 2:45AM','3709.88','Lomar Sub 601','0' union all

    select 'Feb 1 2011 2:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 2:45AM','9984.92','Micron Sub 500','0' union all

    select 'Feb 1 2011 2:45AM','9924.22','Micron Sub 501','0' union all

    select 'Feb 1 2011 2:45AM','8424.45','Micron Sub 502','0' union all

    select 'Feb 1 2011 2:45AM','11561.3','Micron Sub 503','0' union all

    select 'Feb 1 2011 2:45AM','12308.4','Point of Woods','0' union all

    select 'Feb 1 2011 2:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 2:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 2:45AM','8396.78','Prince William S','0' union all

    select 'Feb 1 2011 3:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 3:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 3:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 3:00AM','18212.4','Airport Sub','0' union all

    select 'Feb 1 2011 3:00AM','-12.5632','BATT CHST 125','0' union all

    select 'Feb 1 2011 3:00AM','-10.7255','BATT CHST 346','0' union all

    select 'Feb 1 2011 3:00AM','8893.52','Battery Heights','0' union all

    select 'Feb 1 2011 3:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 3:00AM','2281.49','Lomar Sub 600','0' union all

    select 'Feb 1 2011 3:00AM','3758.24','Lomar Sub 601','0' union all

    select 'Feb 1 2011 3:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 3:00AM','9928.85','Micron Sub 500','0' union all

    select 'Feb 1 2011 3:00AM','10009.1','Micron Sub 501','0' union all

    select 'Feb 1 2011 3:00AM','8407.88','Micron Sub 502','0' union all

    select 'Feb 1 2011 3:00AM','11647.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 3:00AM','12367.7','Point of Woods','0' union all

    select 'Feb 1 2011 3:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 3:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 3:00AM','8490.44','Prince William S','0' union all

    select 'Feb 1 2011 3:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 3:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 3:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 3:15AM','18454.6','Airport Sub','0' union all

    select 'Feb 1 2011 3:15AM','-13.1115','BATT CHST 125','0' union all

    select 'Feb 1 2011 3:15AM','-10.9461','BATT CHST 346','0' union all

    select 'Feb 1 2011 3:15AM','8947.29','Battery Heights','0' union all

    select 'Feb 1 2011 3:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 3:15AM','2268.9','Lomar Sub 600','0' union all

    select 'Feb 1 2011 3:15AM','3798.64','Lomar Sub 601','0' union all

    select 'Feb 1 2011 3:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 3:15AM','10014.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 3:15AM','9974.43','Micron Sub 501','0' union all

    select 'Feb 1 2011 3:15AM','8413.54','Micron Sub 502','0' union all

    select 'Feb 1 2011 3:15AM','11758.2','Micron Sub 503','0' union all

    select 'Feb 1 2011 3:15AM','12527.1','Point of Woods','0' union all

    select 'Feb 1 2011 3:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 3:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 3:15AM','8600.02','Prince William S','0' union all

    select 'Feb 1 2011 3:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 3:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 3:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 3:30AM','18516.7','Airport Sub','0' union all

    select 'Feb 1 2011 3:30AM','-13.1788','BATT CHST 125','0' union all

    select 'Feb 1 2011 3:30AM','-11.0039','BATT CHST 346','0' union all

    select 'Feb 1 2011 3:30AM','8977.37','Battery Heights','0' union all

    select 'Feb 1 2011 3:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 3:30AM','2290.27','Lomar Sub 600','0' union all

    select 'Feb 1 2011 3:30AM','3809.9','Lomar Sub 601','0' union all

    select 'Feb 1 2011 3:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 3:30AM','10024.2','Micron Sub 500','0' union all

    select 'Feb 1 2011 3:30AM','10007.7','Micron Sub 501','0' union all

    select 'Feb 1 2011 3:30AM','8377.29','Micron Sub 502','0' union all

    select 'Feb 1 2011 3:30AM','11810.7','Micron Sub 503','0' union all

    select 'Feb 1 2011 3:30AM','12760.6','Point of Woods','0' union all

    select 'Feb 1 2011 3:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 3:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 3:30AM','8613.77','Prince William S','0' union all

    select 'Feb 1 2011 3:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 3:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 3:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 3:45AM','18601.6','Airport Sub','0' union all

    select 'Feb 1 2011 3:45AM','-13.1426','BATT CHST 125','0' union all

    select 'Feb 1 2011 3:45AM','-10.9643','BATT CHST 346','0' union all

    select 'Feb 1 2011 3:45AM','9152.95','Battery Heights','0' union all

    select 'Feb 1 2011 3:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 3:45AM','2303.61','Lomar Sub 600','0' union all

    select 'Feb 1 2011 3:45AM','3816.64','Lomar Sub 601','0' union all

    select 'Feb 1 2011 3:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 3:45AM','9954.65','Micron Sub 500','0' union all

    select 'Feb 1 2011 3:45AM','9920.09','Micron Sub 501','0' union all

    select 'Feb 1 2011 3:45AM','8326.98','Micron Sub 502','0' union all

    select 'Feb 1 2011 3:45AM','11733','Micron Sub 503','0' union all

    select 'Feb 1 2011 3:45AM','12964.7','Point of Woods','0' union all

    select 'Feb 1 2011 3:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 3:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 3:45AM','8522.3','Prince William S','0' union all

    select 'Feb 1 2011 4:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 4:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 4:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 4:00AM','18746.9','Airport Sub','0' union all

    select 'Feb 1 2011 4:00AM','-12.6624','BATT CHST 125','0' union all

    select 'Feb 1 2011 4:00AM','-10.7629','BATT CHST 346','0' union all

    select 'Feb 1 2011 4:00AM','9178','Battery Heights','0' union all

    select 'Feb 1 2011 4:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 4:00AM','2323.48','Lomar Sub 600','0' union all

    select 'Feb 1 2011 4:00AM','3817.62','Lomar Sub 601','0' union all

    select 'Feb 1 2011 4:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 4:00AM','9860.26','Micron Sub 500','0' union all

    select 'Feb 1 2011 4:00AM','9871.23','Micron Sub 501','0' union all

    select 'Feb 1 2011 4:00AM','8301.94','Micron Sub 502','0' union all

    select 'Feb 1 2011 4:00AM','11646.8','Micron Sub 503','0' union all

    select 'Feb 1 2011 4:00AM','13005.2','Point of Woods','0' union all

    select 'Feb 1 2011 4:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 4:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 4:00AM','8503.02','Prince William S','0' union all

    select 'Feb 1 2011 4:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 4:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 4:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 4:15AM','19069.2','Airport Sub','0' union all

    select 'Feb 1 2011 4:15AM','-12.4333','BATT CHST 125','0' union all

    select 'Feb 1 2011 4:15AM','-11.0235','BATT CHST 346','0' union all

    select 'Feb 1 2011 4:15AM','9321.09','Battery Heights','0' union all

    select 'Feb 1 2011 4:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 4:15AM','2340.04','Lomar Sub 600','0' union all

    select 'Feb 1 2011 4:15AM','3856.23','Lomar Sub 601','0' union all

    select 'Feb 1 2011 4:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 4:15AM','9846.42','Micron Sub 500','0' union all

    select 'Feb 1 2011 4:15AM','9884.75','Micron Sub 501','0' union all

    select 'Feb 1 2011 4:15AM','8220.37','Micron Sub 502','0' union all

    select 'Feb 1 2011 4:15AM','11621.5','Micron Sub 503','0' union all

    select 'Feb 1 2011 4:15AM','13228.4','Point of Woods','0' union all

    select 'Feb 1 2011 4:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 4:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 4:15AM','8712.85','Prince William S','0' union all

    select 'Feb 1 2011 4:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 4:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 4:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 4:30AM','19452.8','Airport Sub','0' union all

    select 'Feb 1 2011 4:30AM','-13.2387','BATT CHST 125','0' union all

    select 'Feb 1 2011 4:30AM','-11.8597','BATT CHST 346','0' union all

    select 'Feb 1 2011 4:30AM','9571.28','Battery Heights','0' union all

    select 'Feb 1 2011 4:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 4:30AM','2412.43','Lomar Sub 600','0' union all

    select 'Feb 1 2011 4:30AM','3939.04','Lomar Sub 601','0' union all

    select 'Feb 1 2011 4:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 4:30AM','9880.24','Micron Sub 500','0' union all

    select 'Feb 1 2011 4:30AM','9915.99','Micron Sub 501','0' union all

    select 'Feb 1 2011 4:30AM','8170.46','Micron Sub 502','0' union all

    select 'Feb 1 2011 4:30AM','11681.3','Micron Sub 503','0' union all

    select 'Feb 1 2011 4:30AM','13145.5','Point of Woods','0' union all

    select 'Feb 1 2011 4:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 4:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 4:30AM','8802.9','Prince William S','0' union all

    select 'Feb 1 2011 4:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 4:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 4:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 4:45AM','19754.2','Airport Sub','0' union all

    select 'Feb 1 2011 4:45AM','-13.3448','BATT CHST 125','0' union all

    select 'Feb 1 2011 4:45AM','-11.7671','BATT CHST 346','0' union all

    select 'Feb 1 2011 4:45AM','9732.87','Battery Heights','0' union all

    select 'Feb 1 2011 4:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 4:45AM','2366.69','Lomar Sub 600','0' union all

    select 'Feb 1 2011 4:45AM','3985.23','Lomar Sub 601','0' union all

    select 'Feb 1 2011 4:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 4:45AM','9861.85','Micron Sub 500','0' union all

    select 'Feb 1 2011 4:45AM','9980.19','Micron Sub 501','0' union all

    select 'Feb 1 2011 4:45AM','8234.21','Micron Sub 502','0' union all

    select 'Feb 1 2011 4:45AM','11723.6','Micron Sub 503','0' union all

    select 'Feb 1 2011 4:45AM','13624.6','Point of Woods','0' union all

    select 'Feb 1 2011 4:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 4:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 4:45AM','8922.35','Prince William S','0' union all

    select 'Feb 1 2011 5:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 5:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 5:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 5:00AM','20245.2','Airport Sub','0' union all

    select 'Feb 1 2011 5:00AM','-13.3547','BATT CHST 125','0' union all

    select 'Feb 1 2011 5:00AM','-11.777','BATT CHST 346','0' union all

    select 'Feb 1 2011 5:00AM','9909.52','Battery Heights','0' union all

    select 'Feb 1 2011 5:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 5:00AM','2363.57','Lomar Sub 600','0' union all

    select 'Feb 1 2011 5:00AM','4012.4','Lomar Sub 601','0' union all

    select 'Feb 1 2011 5:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 5:00AM','9870.61','Micron Sub 500','0' union all

    select 'Feb 1 2011 5:00AM','9980.74','Micron Sub 501','0' union all

    select 'Feb 1 2011 5:00AM','8125.02','Micron Sub 502','0' union all

    select 'Feb 1 2011 5:00AM','11782.4','Micron Sub 503','0' union all

    select 'Feb 1 2011 5:00AM','13882.3','Point of Woods','0' union all

    select 'Feb 1 2011 5:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 5:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 5:00AM','8997.9','Prince William S','0' union all

    select 'Feb 1 2011 5:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 5:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 5:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 5:15AM','20931.5','Airport Sub','0' union all

    select 'Feb 1 2011 5:15AM','-13.2474','BATT CHST 125','0' union all

    select 'Feb 1 2011 5:15AM','-11.6548','BATT CHST 346','0' union all

    select 'Feb 1 2011 5:15AM','10023.5','Battery Heights','0' union all

    select 'Feb 1 2011 5:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 5:15AM','2393.88','Lomar Sub 600','0' union all

    select 'Feb 1 2011 5:15AM','4018.88','Lomar Sub 601','0' union all

    select 'Feb 1 2011 5:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 5:15AM','9931.3','Micron Sub 500','0' union all

    select 'Feb 1 2011 5:15AM','9968.14','Micron Sub 501','0' union all

    select 'Feb 1 2011 5:15AM','8101.06','Micron Sub 502','0' union all

    select 'Feb 1 2011 5:15AM','11811.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 5:15AM','14084.8','Point of Woods','0' union all

    select 'Feb 1 2011 5:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 5:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 5:15AM','9177.71','Prince William S','0' union all

    select 'Feb 1 2011 5:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 5:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 5:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 5:30AM','20987.4','Airport Sub','0' union all

    select 'Feb 1 2011 5:30AM','-13.2557','BATT CHST 125','0' union all

    select 'Feb 1 2011 5:30AM','-11.684','BATT CHST 346','0' union all

    select 'Feb 1 2011 5:30AM','10211.7','Battery Heights','0' union all

    select 'Feb 1 2011 5:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 5:30AM','2530.96','Lomar Sub 600','0' union all

    select 'Feb 1 2011 5:30AM','4068.32','Lomar Sub 601','0' union all

    select 'Feb 1 2011 5:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 5:30AM','10042.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 5:30AM','9943.35','Micron Sub 501','0' union all

    select 'Feb 1 2011 5:30AM','8052.89','Micron Sub 502','0' union all

    select 'Feb 1 2011 5:30AM','11811.2','Micron Sub 503','0' union all

    select 'Feb 1 2011 5:30AM','14496','Point of Woods','0' union all

    select 'Feb 1 2011 5:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 5:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 5:30AM','9364.42','Prince William S','0' union all

    select 'Feb 1 2011 5:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 5:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 5:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 5:45AM','21470.1','Airport Sub','0' union all

    select 'Feb 1 2011 5:45AM','-13.3072','BATT CHST 125','0' union all

    select 'Feb 1 2011 5:45AM','-11.7607','BATT CHST 346','0' union all

    select 'Feb 1 2011 5:45AM','10535.8','Battery Heights','0' union all

    select 'Feb 1 2011 5:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 5:45AM','2657.27','Lomar Sub 600','0' union all

    select 'Feb 1 2011 5:45AM','4063.87','Lomar Sub 601','0' union all

    select 'Feb 1 2011 5:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 5:45AM','10081','Micron Sub 500','0' union all

    select 'Feb 1 2011 5:45AM','9855.52','Micron Sub 501','0' union all

    select 'Feb 1 2011 5:45AM','8089.63','Micron Sub 502','0' union all

    select 'Feb 1 2011 5:45AM','11735','Micron Sub 503','0' union all

    select 'Feb 1 2011 5:45AM','14886.4','Point of Woods','0' union all

    select 'Feb 1 2011 5:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 5:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 5:45AM','9473.37','Prince William S','0' union all

    select 'Feb 1 2011 6:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 6:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 6:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 6:00AM','21983.5','Airport Sub','0' union all

    select 'Feb 1 2011 6:00AM','-13.2691','BATT CHST 125','0' union all

    select 'Feb 1 2011 6:00AM','-11.8333','BATT CHST 346','0' union all

    select 'Feb 1 2011 6:00AM','10864','Battery Heights','0' union all

    select 'Feb 1 2011 6:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 6:00AM','2718.19','Lomar Sub 600','0' union all

    select 'Feb 1 2011 6:00AM','4086.89','Lomar Sub 601','0' union all

    select 'Feb 1 2011 6:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 6:00AM','10088.9','Micron Sub 500','0' union all

    select 'Feb 1 2011 6:00AM','9874.37','Micron Sub 501','0' union all

    select 'Feb 1 2011 6:00AM','8068.73','Micron Sub 502','0' union all

    select 'Feb 1 2011 6:00AM','11677.7','Micron Sub 503','0' union all

    select 'Feb 1 2011 6:00AM','15335.3','Point of Woods','0' union all

    select 'Feb 1 2011 6:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 6:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 6:00AM','9787.41','Prince William S','0' union all

    select 'Feb 1 2011 6:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 6:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 6:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 6:15AM','22837.5','Airport Sub','0' union all

    select 'Feb 1 2011 6:15AM','-12.8738','BATT CHST 125','0' union all

    select 'Feb 1 2011 6:15AM','-11.4395','BATT CHST 346','0' union all

    select 'Feb 1 2011 6:15AM','11280.4','Battery Heights','0' union all

    select 'Feb 1 2011 6:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 6:15AM','2749.96','Lomar Sub 600','0' union all

    select 'Feb 1 2011 6:15AM','4083.17','Lomar Sub 601','0' union all

    select 'Feb 1 2011 6:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 6:15AM','10054.8','Micron Sub 500','0' union all

    select 'Feb 1 2011 6:15AM','9920.85','Micron Sub 501','0' union all

    select 'Feb 1 2011 6:15AM','8044.7','Micron Sub 502','0' union all

    select 'Feb 1 2011 6:15AM','11622.2','Micron Sub 503','0' union all

    select 'Feb 1 2011 6:15AM','15561.4','Point of Woods','0' union all

    select 'Feb 1 2011 6:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 6:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 6:15AM','10055.9','Prince William S','0' union all

    select 'Feb 1 2011 6:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 6:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 6:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 6:30AM','23222.3','Airport Sub','0' union all

    select 'Feb 1 2011 6:30AM','-12.6194','BATT CHST 125','0' union all

    select 'Feb 1 2011 6:30AM','-11.2719','BATT CHST 346','0' union all

    select 'Feb 1 2011 6:30AM','11272','Battery Heights','0' union all

    select 'Feb 1 2011 6:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 6:30AM','2697.69','Lomar Sub 600','0' union all

    select 'Feb 1 2011 6:30AM','4160.98','Lomar Sub 601','0' union all

    select 'Feb 1 2011 6:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 6:30AM','9996.76','Micron Sub 500','0' union all

    select 'Feb 1 2011 6:30AM','10000.3','Micron Sub 501','0' union all

    select 'Feb 1 2011 6:30AM','8063.1','Micron Sub 502','0' union all

    select 'Feb 1 2011 6:30AM','11711.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 6:30AM','15510.1','Point of Woods','0' union all

    select 'Feb 1 2011 6:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 6:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 6:30AM','10136.5','Prince William S','0' union all

    select 'Feb 1 2011 6:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 6:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 6:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 6:45AM','23596.6','Airport Sub','0' union all

    select 'Feb 1 2011 6:45AM','-12.4159','BATT CHST 125','0' union all

    select 'Feb 1 2011 6:45AM','-11.0048','BATT CHST 346','0' union all

    select 'Feb 1 2011 6:45AM','11556.3','Battery Heights','0' union all

    select 'Feb 1 2011 6:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 6:45AM','2705.12','Lomar Sub 600','0' union all

    select 'Feb 1 2011 6:45AM','4181.96','Lomar Sub 601','0' union all

    select 'Feb 1 2011 6:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 6:45AM','9960.48','Micron Sub 500','0' union all

    select 'Feb 1 2011 6:45AM','9993.15','Micron Sub 501','0' union all

    select 'Feb 1 2011 6:45AM','8146.44','Micron Sub 502','0' union all

    select 'Feb 1 2011 6:45AM','11706.6','Micron Sub 503','0' union all

    select 'Feb 1 2011 6:45AM','15648.9','Point of Woods','0' union all

    select 'Feb 1 2011 6:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 6:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 6:45AM','10325','Prince William S','0' union all

    select 'Feb 1 2011 7:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 7:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 7:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 7:00AM','23897.3','Airport Sub','0' union all

    select 'Feb 1 2011 7:00AM','-12.8268','BATT CHST 125','0' union all

    select 'Feb 1 2011 7:00AM','-10.9148','BATT CHST 346','0' union all

    select 'Feb 1 2011 7:00AM','11849.3','Battery Heights','0' union all

    select 'Feb 1 2011 7:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 7:00AM','2634.11','Lomar Sub 600','0' union all

    select 'Feb 1 2011 7:00AM','4252.96','Lomar Sub 601','0' union all

    select 'Feb 1 2011 7:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 7:00AM','9820.66','Micron Sub 500','0' union all

    select 'Feb 1 2011 7:00AM','10036.4','Micron Sub 501','0' union all

    select 'Feb 1 2011 7:00AM','8193.88','Micron Sub 502','0' union all

    select 'Feb 1 2011 7:00AM','11693.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 7:00AM','15451.6','Point of Woods','0' union all

    select 'Feb 1 2011 7:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 7:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 7:00AM','10496.7','Prince William S','0' union all

    select 'Feb 1 2011 7:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 7:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 7:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 7:15AM','24123.2','Airport Sub','0' union all

    select 'Feb 1 2011 7:15AM','-13.2284','BATT CHST 125','0' union all

    select 'Feb 1 2011 7:15AM','-11.2163','BATT CHST 346','0' union all

    select 'Feb 1 2011 7:15AM','11877.5','Battery Heights','0' union all

    select 'Feb 1 2011 7:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 7:15AM','2631.77','Lomar Sub 600','0' union all

    select 'Feb 1 2011 7:15AM','4279.84','Lomar Sub 601','0' union all

    select 'Feb 1 2011 7:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 7:15AM','9799.94','Micron Sub 500','0' union all

    select 'Feb 1 2011 7:15AM','9938.28','Micron Sub 501','0' union all

    select 'Feb 1 2011 7:15AM','8278.65','Micron Sub 502','0' union all

    select 'Feb 1 2011 7:15AM','11707.4','Micron Sub 503','0' union all

    select 'Feb 1 2011 7:15AM','15486.5','Point of Woods','0' union all

    select 'Feb 1 2011 7:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 7:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 7:15AM','10680.6','Prince William S','0' union all

    select 'Feb 1 2011 7:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 7:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 7:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 7:30AM','24020.8','Airport Sub','0' union all

    select 'Feb 1 2011 7:30AM','-13.1219','BATT CHST 125','0' union all

    select 'Feb 1 2011 7:30AM','-11.6258','BATT CHST 346','0' union all

    select 'Feb 1 2011 7:30AM','12033.6','Battery Heights','0' union all

    select 'Feb 1 2011 7:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 7:30AM','2624.9','Lomar Sub 600','0' union all

    select 'Feb 1 2011 7:30AM','4296.1','Lomar Sub 601','0' union all

    select 'Feb 1 2011 7:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 7:30AM','9763.27','Micron Sub 500','0' union all

    select 'Feb 1 2011 7:30AM','9956.14','Micron Sub 501','0' union all

    select 'Feb 1 2011 7:30AM','8323.33','Micron Sub 502','0' union all

    select 'Feb 1 2011 7:30AM','11688.2','Micron Sub 503','0' union all

    select 'Feb 1 2011 7:30AM','15295.6','Point of Woods','0' union all

    select 'Feb 1 2011 7:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 7:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 7:30AM','10851.2','Prince William S','0' union all

    select 'Feb 1 2011 7:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 7:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 7:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 7:45AM','23681.3','Airport Sub','0' union all

    select 'Feb 1 2011 7:45AM','-12.8916','BATT CHST 125','0' union all

    select 'Feb 1 2011 7:45AM','-11.5579','BATT CHST 346','0' union all

    select 'Feb 1 2011 7:45AM','12054.9','Battery Heights','0' union all

    select 'Feb 1 2011 7:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 7:45AM','2657.07','Lomar Sub 600','0' union all

    select 'Feb 1 2011 7:45AM','4333.3','Lomar Sub 601','0' union all

    select 'Feb 1 2011 7:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 7:45AM','9820.87','Micron Sub 500','0' union all

    select 'Feb 1 2011 7:45AM','9871.39','Micron Sub 501','0' union all

    select 'Feb 1 2011 7:45AM','8259.34','Micron Sub 502','0' union all

    select 'Feb 1 2011 7:45AM','11734.8','Micron Sub 503','0' union all

    select 'Feb 1 2011 7:45AM','15264.7','Point of Woods','0' union all

    select 'Feb 1 2011 7:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 7:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 7:45AM','10797.1','Prince William S','0' union all

    select 'Feb 1 2011 8:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 8:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 8:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 8:00AM','23759.1','Airport Sub','0' union all

    select 'Feb 1 2011 8:00AM','-13.0689','BATT CHST 125','0' union all

    select 'Feb 1 2011 8:00AM','-11.678','BATT CHST 346','0' union all

    select 'Feb 1 2011 8:00AM','12145.4','Battery Heights','0' union all

    select 'Feb 1 2011 8:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 8:00AM','2687.63','Lomar Sub 600','0' union all

    select 'Feb 1 2011 8:00AM','4336.81','Lomar Sub 601','0' union all

    select 'Feb 1 2011 8:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 8:00AM','9833.61','Micron Sub 500','0' union all

    select 'Feb 1 2011 8:00AM','9892.15','Micron Sub 501','0' union all

    select 'Feb 1 2011 8:00AM','8231.68','Micron Sub 502','0' union all

    select 'Feb 1 2011 8:00AM','11716.9','Micron Sub 503','0' union all

    select 'Feb 1 2011 8:00AM','15088.2','Point of Woods','0' union all

    select 'Feb 1 2011 8:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 8:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 8:00AM','10555.1','Prince William S','0' union all

    select 'Feb 1 2011 8:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 8:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 8:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 8:15AM','23452.1','Airport Sub','0' union all

    select 'Feb 1 2011 8:15AM','-12.324','BATT CHST 125','0' union all

    select 'Feb 1 2011 8:15AM','-11.0332','BATT CHST 346','0' union all

    select 'Feb 1 2011 8:15AM','12192.7','Battery Heights','0' union all

    select 'Feb 1 2011 8:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 8:15AM','2683.19','Lomar Sub 600','0' union all

    select 'Feb 1 2011 8:15AM','4366.4','Lomar Sub 601','0' union all

    select 'Feb 1 2011 8:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 8:15AM','9915.07','Micron Sub 500','0' union all

    select 'Feb 1 2011 8:15AM','10052.8','Micron Sub 501','0' union all

    select 'Feb 1 2011 8:15AM','8111.23','Micron Sub 502','0' union all

    select 'Feb 1 2011 8:15AM','11815.8','Micron Sub 503','0' union all

    select 'Feb 1 2011 8:15AM','15027.7','Point of Woods','0' union all

    select 'Feb 1 2011 8:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 8:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 8:15AM','10537.5','Prince William S','0' union all

    select 'Feb 1 2011 8:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 8:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 8:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 8:30AM','23334','Airport Sub','0' union all

    select 'Feb 1 2011 8:30AM','-12.6847','BATT CHST 125','0' union all

    select 'Feb 1 2011 8:30AM','-10.8232','BATT CHST 346','0' union all

    select 'Feb 1 2011 8:30AM','12189.6','Battery Heights','0' union all

    select 'Feb 1 2011 8:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 8:30AM','2726.69','Lomar Sub 600','0' union all

    select 'Feb 1 2011 8:30AM','4376.36','Lomar Sub 601','0' union all

    select 'Feb 1 2011 8:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 8:30AM','9916.87','Micron Sub 500','0' union all

    select 'Feb 1 2011 8:30AM','10161.2','Micron Sub 501','0' union all

    select 'Feb 1 2011 8:30AM','8015.65','Micron Sub 502','0' union all

    select 'Feb 1 2011 8:30AM','11825.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 8:30AM','14999.7','Point of Woods','0' union all

    select 'Feb 1 2011 8:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 8:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 8:30AM','10691.5','Prince William S','0' union all

    select 'Feb 1 2011 8:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 8:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 8:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 8:45AM','23117','Airport Sub','0' union all

    select 'Feb 1 2011 8:45AM','-13.4336','BATT CHST 125','0' union all

    select 'Feb 1 2011 8:45AM','-11.2345','BATT CHST 346','0' union all

    select 'Feb 1 2011 8:45AM','12201.7','Battery Heights','0' union all

    select 'Feb 1 2011 8:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 8:45AM','2789.07','Lomar Sub 600','0' union all

    select 'Feb 1 2011 8:45AM','4359.35','Lomar Sub 601','0' union all

    select 'Feb 1 2011 8:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 8:45AM','9946.95','Micron Sub 500','0' union all

    select 'Feb 1 2011 8:45AM','10134.9','Micron Sub 501','0' union all

    select 'Feb 1 2011 8:45AM','7982.52','Micron Sub 502','0' union all

    select 'Feb 1 2011 8:45AM','11729.2','Micron Sub 503','0' union all

    select 'Feb 1 2011 8:45AM','14939.3','Point of Woods','0' union all

    select 'Feb 1 2011 8:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 8:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 8:45AM','10880.5','Prince William S','0' union all

    select 'Feb 1 2011 9:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 9:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 9:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 9:00AM','23223.7','Airport Sub','0' union all

    select 'Feb 1 2011 9:00AM','-13.4246','BATT CHST 125','0' union all

    select 'Feb 1 2011 9:00AM','-11.1721','BATT CHST 346','0' union all

    select 'Feb 1 2011 9:00AM','12253.1','Battery Heights','0' union all

    select 'Feb 1 2011 9:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 9:00AM','2811.36','Lomar Sub 600','0' union all

    select 'Feb 1 2011 9:00AM','4349.59','Lomar Sub 601','0' union all

    select 'Feb 1 2011 9:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 9:00AM','9880.15','Micron Sub 500','0' union all

    select 'Feb 1 2011 9:00AM','10083.4','Micron Sub 501','0' union all

    select 'Feb 1 2011 9:00AM','7940.7','Micron Sub 502','0' union all

    select 'Feb 1 2011 9:00AM','11694.5','Micron Sub 503','0' union all

    select 'Feb 1 2011 9:00AM','14829.3','Point of Woods','0' union all

    select 'Feb 1 2011 9:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 9:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 9:00AM','11097.4','Prince William S','0' union all

    select 'Feb 1 2011 9:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 9:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 9:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 9:15AM','22866.4','Airport Sub','0' union all

    select 'Feb 1 2011 9:15AM','-13.3472','BATT CHST 125','0' union all

    select 'Feb 1 2011 9:15AM','-11.1448','BATT CHST 346','0' union all

    select 'Feb 1 2011 9:15AM','12363.7','Battery Heights','0' union all

    select 'Feb 1 2011 9:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 9:15AM','2828.56','Lomar Sub 600','0' union all

    select 'Feb 1 2011 9:15AM','4353.11','Lomar Sub 601','0' union all

    select 'Feb 1 2011 9:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 9:15AM','9883.71','Micron Sub 500','0' union all

    select 'Feb 1 2011 9:15AM','10036','Micron Sub 501','0' union all

    select 'Feb 1 2011 9:15AM','7942.64','Micron Sub 502','0' union all

    select 'Feb 1 2011 9:15AM','11636.8','Micron Sub 503','0' union all

    select 'Feb 1 2011 9:15AM','14808.3','Point of Woods','0' union all

    select 'Feb 1 2011 9:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 9:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 9:15AM','11177.3','Prince William S','0' union all

    select 'Feb 1 2011 9:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 9:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 9:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 9:30AM','22458.3','Airport Sub','0' union all

    select 'Feb 1 2011 9:30AM','-13.4195','BATT CHST 125','0' union all

    select 'Feb 1 2011 9:30AM','-11.2323','BATT CHST 346','0' union all

    select 'Feb 1 2011 9:30AM','12449.5','Battery Heights','0' union all

    select 'Feb 1 2011 9:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 9:30AM','2830.27','Lomar Sub 600','0' union all

    select 'Feb 1 2011 9:30AM','4351.17','Lomar Sub 601','0' union all

    select 'Feb 1 2011 9:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 9:30AM','9912.27','Micron Sub 500','0' union all

    select 'Feb 1 2011 9:30AM','10067.6','Micron Sub 501','0' union all

    select 'Feb 1 2011 9:30AM','8116.33','Micron Sub 502','0' union all

    select 'Feb 1 2011 9:30AM','11630.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 9:30AM','14667.6','Point of Woods','0' union all

    select 'Feb 1 2011 9:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 9:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 9:30AM','11183.9','Prince William S','0' union all

    select 'Feb 1 2011 9:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 9:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 9:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 9:45AM','22720.3','Airport Sub','0' union all

    select 'Feb 1 2011 9:45AM','-13.332','BATT CHST 125','0' union all

    select 'Feb 1 2011 9:45AM','-11.4109','BATT CHST 346','0' union all

    select 'Feb 1 2011 9:45AM','12201.2','Battery Heights','0' union all

    select 'Feb 1 2011 9:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 9:45AM','2836.8','Lomar Sub 600','0' union all

    select 'Feb 1 2011 9:45AM','4346.56','Lomar Sub 601','0' union all

    select 'Feb 1 2011 9:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 9:45AM','9903.03','Micron Sub 500','0' union all

    select 'Feb 1 2011 9:45AM','10054.8','Micron Sub 501','0' union all

    select 'Feb 1 2011 9:45AM','8243.21','Micron Sub 502','0' union all

    select 'Feb 1 2011 9:45AM','11673','Micron Sub 503','0' union all

    select 'Feb 1 2011 9:45AM','14483.8','Point of Woods','0' union all

    select 'Feb 1 2011 9:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 9:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 9:45AM','11248.4','Prince William S','0' union all

    select 'Feb 1 2011 10:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 10:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 10:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 10:00AM','22348.9','Airport Sub','0' union all

    select 'Feb 1 2011 10:00AM','-13.0184','BATT CHST 125','0' union all

    select 'Feb 1 2011 10:00AM','-11.451','BATT CHST 346','0' union all

    select 'Feb 1 2011 10:00AM','12271.1','Battery Heights','0' union all

    select 'Feb 1 2011 10:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 10:00AM','2804.46','Lomar Sub 600','0' union all

    select 'Feb 1 2011 10:00AM','4390.21','Lomar Sub 601','0' union all

    select 'Feb 1 2011 10:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 10:00AM','9828.24','Micron Sub 500','0' union all

    select 'Feb 1 2011 10:00AM','10106.8','Micron Sub 501','0' union all

    select 'Feb 1 2011 10:00AM','8340.37','Micron Sub 502','0' union all

    select 'Feb 1 2011 10:00AM','11683.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 10:00AM','14148.2','Point of Woods','0' union all

    select 'Feb 1 2011 10:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 10:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 10:00AM','11365.5','Prince William S','0' union all

    select 'Feb 1 2011 10:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 10:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 10:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 10:15AM','22073.7','Airport Sub','0' union all

    select 'Feb 1 2011 10:15AM','-12.4838','BATT CHST 125','0' union all

    select 'Feb 1 2011 10:15AM','-11.0837','BATT CHST 346','0' union all

    select 'Feb 1 2011 10:15AM','12236.8','Battery Heights','0' union all

    select 'Feb 1 2011 10:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 10:15AM','2828.05','Lomar Sub 600','0' union all

    select 'Feb 1 2011 10:15AM','4438.4','Lomar Sub 601','0' union all

    select 'Feb 1 2011 10:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 10:15AM','9858.23','Micron Sub 500','0' union all

    select 'Feb 1 2011 10:15AM','10169.8','Micron Sub 501','0' union all

    select 'Feb 1 2011 10:15AM','8275.6','Micron Sub 502','0' union all

    select 'Feb 1 2011 10:15AM','11697.3','Micron Sub 503','0' union all

    select 'Feb 1 2011 10:15AM','14041.7','Point of Woods','0' union all

    select 'Feb 1 2011 10:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 10:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 10:15AM','11240.7','Prince William S','0' union all

    select 'Feb 1 2011 10:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 10:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 10:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 10:30AM','22050.7','Airport Sub','0' union all

    select 'Feb 1 2011 10:30AM','-12.414','BATT CHST 125','0' union all

    select 'Feb 1 2011 10:30AM','-11.0672','BATT CHST 346','0' union all

    select 'Feb 1 2011 10:30AM','12121.1','Battery Heights','0' union all

    select 'Feb 1 2011 10:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 10:30AM','2802.6','Lomar Sub 600','0' union all

    select 'Feb 1 2011 10:30AM','4432.68','Lomar Sub 601','0' union all

    select 'Feb 1 2011 10:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 10:30AM','9878.77','Micron Sub 500','0' union all

    select 'Feb 1 2011 10:30AM','10167','Micron Sub 501','0' union all

    select 'Feb 1 2011 10:30AM','8260.24','Micron Sub 502','0' union all

    select 'Feb 1 2011 10:30AM','11729.8','Micron Sub 503','0' union all

    select 'Feb 1 2011 10:30AM','14091','Point of Woods','0' union all

    select 'Feb 1 2011 10:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 10:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 10:30AM','11170.2','Prince William S','0' union all

    select 'Feb 1 2011 10:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 10:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 10:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 10:45AM','22043.6','Airport Sub','0' union all

    select 'Feb 1 2011 10:45AM','-12.4189','BATT CHST 125','0' union all

    select 'Feb 1 2011 10:45AM','-11.1078','BATT CHST 346','0' union all

    select 'Feb 1 2011 10:45AM','12068.5','Battery Heights','0' union all

    select 'Feb 1 2011 10:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 10:45AM','2822.48','Lomar Sub 600','0' union all

    select 'Feb 1 2011 10:45AM','4427.51','Lomar Sub 601','0' union all

    select 'Feb 1 2011 10:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 10:45AM','9879.89','Micron Sub 500','0' union all

    select 'Feb 1 2011 10:45AM','10148.7','Micron Sub 501','0' union all

    select 'Feb 1 2011 10:45AM','8300.07','Micron Sub 502','0' union all

    select 'Feb 1 2011 10:45AM','11717.1','Micron Sub 503','0' union all

    select 'Feb 1 2011 10:45AM','14023.1','Point of Woods','0' union all

    select 'Feb 1 2011 10:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 10:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 10:45AM','11241.9','Prince William S','0' union all

    select 'Feb 1 2011 11:00AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 11:00AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 11:00AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 11:00AM','21549.7','Airport Sub','0' union all

    select 'Feb 1 2011 11:00AM','-12.7578','BATT CHST 125','0' union all

    select 'Feb 1 2011 11:00AM','-11.3204','BATT CHST 346','0' union all

    select 'Feb 1 2011 11:00AM','12154.1','Battery Heights','0' union all

    select 'Feb 1 2011 11:00AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 11:00AM','2851.57','Lomar Sub 600','0' union all

    select 'Feb 1 2011 11:00AM','4413.5','Lomar Sub 601','0' union all

    select 'Feb 1 2011 11:00AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 11:00AM','9863.56','Micron Sub 500','0' union all

    select 'Feb 1 2011 11:00AM','10128.8','Micron Sub 501','0' union all

    select 'Feb 1 2011 11:00AM','8260.9','Micron Sub 502','0' union all

    select 'Feb 1 2011 11:00AM','11665.6','Micron Sub 503','0' union all

    select 'Feb 1 2011 11:00AM','14134.7','Point of Woods','0' union all

    select 'Feb 1 2011 11:00AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 11:00AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 11:00AM','11177.3','Prince William S','0' union all

    select 'Feb 1 2011 11:15AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 11:15AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 11:15AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 11:15AM','21592.3','Airport Sub','0' union all

    select 'Feb 1 2011 11:15AM','-12.8671','BATT CHST 125','0' union all

    select 'Feb 1 2011 11:15AM','-11.4589','BATT CHST 346','0' union all

    select 'Feb 1 2011 11:15AM','12286.2','Battery Heights','0' union all

    select 'Feb 1 2011 11:15AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 11:15AM','2910.38','Lomar Sub 600','0' union all

    select 'Feb 1 2011 11:15AM','4416.74','Lomar Sub 601','0' union all

    select 'Feb 1 2011 11:15AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 11:15AM','9940.31','Micron Sub 500','0' union all

    select 'Feb 1 2011 11:15AM','10049.7','Micron Sub 501','0' union all

    select 'Feb 1 2011 11:15AM','8234.2','Micron Sub 502','0' union all

    select 'Feb 1 2011 11:15AM','11631.7','Micron Sub 503','0' union all

    select 'Feb 1 2011 11:15AM','14076.3','Point of Woods','0' union all

    select 'Feb 1 2011 11:15AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 11:15AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 11:15AM','11278','Prince William S','0' union all

    select 'Feb 1 2011 11:30AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 11:30AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 11:30AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 11:30AM','21633.6','Airport Sub','0' union all

    select 'Feb 1 2011 11:30AM','-13.4295','BATT CHST 125','0' union all

    select 'Feb 1 2011 11:30AM','-11.6524','BATT CHST 346','0' union all

    select 'Feb 1 2011 11:30AM','12212.8','Battery Heights','0' union all

    select 'Feb 1 2011 11:30AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 11:30AM','2965.11','Lomar Sub 600','0' union all

    select 'Feb 1 2011 11:30AM','4344.42','Lomar Sub 601','0' union all

    select 'Feb 1 2011 11:30AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 11:30AM','9998.99','Micron Sub 500','0' union all

    select 'Feb 1 2011 11:30AM','9874.91','Micron Sub 501','0' union all

    select 'Feb 1 2011 11:30AM','8283.43','Micron Sub 502','0' union all

    select 'Feb 1 2011 11:30AM','11537.5','Micron Sub 503','0' union all

    select 'Feb 1 2011 11:30AM','13501.9','Point of Woods','0' union all

    select 'Feb 1 2011 11:30AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 11:30AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 11:30AM','11331.6','Prince William S','0' union all

    select 'Feb 1 2011 11:45AM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 11:45AM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 11:45AM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 11:45AM','21508.2','Airport Sub','0' union all

    select 'Feb 1 2011 11:45AM','-12.7997','BATT CHST 125','0' union all

    select 'Feb 1 2011 11:45AM','-11.0953','BATT CHST 346','0' union all

    select 'Feb 1 2011 11:45AM','11967','Battery Heights','0' union all

    select 'Feb 1 2011 11:45AM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 11:45AM','2939.79','Lomar Sub 600','0' union all

    select 'Feb 1 2011 11:45AM','4291.1','Lomar Sub 601','0' union all

    select 'Feb 1 2011 11:45AM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 11:45AM','9972.16','Micron Sub 500','0' union all

    select 'Feb 1 2011 11:45AM','9940.23','Micron Sub 501','0' union all

    select 'Feb 1 2011 11:45AM','8280.3','Micron Sub 502','0' union all

    select 'Feb 1 2011 11:45AM','11531.6','Micron Sub 503','0' union all

    select 'Feb 1 2011 11:45AM','13460.3','Point of Woods','0' union all

    select 'Feb 1 2011 11:45AM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 11:45AM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 11:45AM','11228','Prince William S','0' union all

    select 'Feb 1 2011 12:00PM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:00PM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:00PM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:00PM','21054.9','Airport Sub','0' union all

    select 'Feb 1 2011 12:00PM','-13.1699','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:00PM','-11.5437','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:00PM','11838.4','Battery Heights','0' union all

    select 'Feb 1 2011 12:00PM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:00PM','2984.24','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:00PM','4293.9','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:00PM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:00PM','9945.02','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:00PM','9855.86','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:00PM','8293.93','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:00PM','11428.2','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:00PM','13489.7','Point of Woods','0' union all

    select 'Feb 1 2011 12:00PM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:00PM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:00PM','11150.5','Prince William S','0' union all

    select 'Feb 1 2011 12:15PM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:15PM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:15PM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:15PM','21162.9','Airport Sub','0' union all

    select 'Feb 1 2011 12:15PM','-12.8778','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:15PM','-10.7853','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:15PM','11835.2','Battery Heights','0' union all

    select 'Feb 1 2011 12:15PM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:15PM','2917.01','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:15PM','4289.3','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:15PM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:15PM','9967.71','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:15PM','9914.25','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:15PM','8306.98','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:15PM','11500.5','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:15PM','13416.4','Point of Woods','0' union all

    select 'Feb 1 2011 12:15PM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:15PM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:15PM','10978.1','Prince William S','0' union all

    select 'Feb 1 2011 12:30PM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:30PM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:30PM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:30PM','20821.4','Airport Sub','0' union all

    select 'Feb 1 2011 12:30PM','-13.1111','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:30PM','-10.938','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:30PM','11757.4','Battery Heights','0' union all

    select 'Feb 1 2011 12:30PM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:30PM','2928.42','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:30PM','4307.84','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:30PM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:30PM','10070.8','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:30PM','9846.63','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:30PM','8335.33','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:30PM','11631','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:30PM','13209.5','Point of Woods','0' union all

    select 'Feb 1 2011 12:30PM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:30PM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:30PM','10927.8','Prince William S','0' union all

    select 'Feb 1 2011 12:45PM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 12:45PM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 12:45PM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 12:45PM','20592.2','Airport Sub','0' union all

    select 'Feb 1 2011 12:45PM','-13.1238','BATT CHST 125','0' union all

    select 'Feb 1 2011 12:45PM','-10.9922','BATT CHST 346','0' union all

    select 'Feb 1 2011 12:45PM','11638.5','Battery Heights','0' union all

    select 'Feb 1 2011 12:45PM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 12:45PM','2978.56','Lomar Sub 600','0' union all

    select 'Feb 1 2011 12:45PM','4249.71','Lomar Sub 601','0' union all

    select 'Feb 1 2011 12:45PM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 12:45PM','10123.5','Micron Sub 500','0' union all

    select 'Feb 1 2011 12:45PM','9795.43','Micron Sub 501','0' union all

    select 'Feb 1 2011 12:45PM','8336','Micron Sub 502','0' union all

    select 'Feb 1 2011 12:45PM','11544.7','Micron Sub 503','0' union all

    select 'Feb 1 2011 12:45PM','13115.5','Point of Woods','0' union all

    select 'Feb 1 2011 12:45PM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 12:45PM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 12:45PM','10845.8','Prince William S','0' union all

    select 'Feb 1 2011 1:00PM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 1:00PM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 1:00PM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 1:00PM','20305.2','Airport Sub','0' union all

    select 'Feb 1 2011 1:00PM','-13.0995','BATT CHST 125','0' union all

    select 'Feb 1 2011 1:00PM','-11.1269','BATT CHST 346','0' union all

    select 'Feb 1 2011 1:00PM','11722.7','Battery Heights','0' union all

    select 'Feb 1 2011 1:00PM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 1:00PM','2996.33','Lomar Sub 600','0' union all

    select 'Feb 1 2011 1:00PM','4240.24','Lomar Sub 601','0' union all

    select 'Feb 1 2011 1:00PM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 1:00PM','10094.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 1:00PM','9769.61','Micron Sub 501','0' union all

    select 'Feb 1 2011 1:00PM','8341.18','Micron Sub 502','0' union all

    select 'Feb 1 2011 1:00PM','11528.7','Micron Sub 503','0' union all

    select 'Feb 1 2011 1:00PM','13081.2','Point of Woods','0' union all

    select 'Feb 1 2011 1:00PM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 1:00PM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 1:00PM','10772.8','Prince William S','0' union all

    select 'Feb 1 2011 1:15PM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 1:15PM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 1:15PM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 1:15PM','20172','Airport Sub','0' union all

    select 'Feb 1 2011 1:15PM','-13.0644','BATT CHST 125','0' union all

    select 'Feb 1 2011 1:15PM','-11.2159','BATT CHST 346','0' union all

    select 'Feb 1 2011 1:15PM','11647.6','Battery Heights','0' union all

    select 'Feb 1 2011 1:15PM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 1:15PM','2942.58','Lomar Sub 600','0' union all

    select 'Feb 1 2011 1:15PM','4257.32','Lomar Sub 601','0' union all

    select 'Feb 1 2011 1:15PM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 1:15PM','10048.7','Micron Sub 500','0' union all

    select 'Feb 1 2011 1:15PM','9852.43','Micron Sub 501','0' union all

    select 'Feb 1 2011 1:15PM','8349.85','Micron Sub 502','0' union all

    select 'Feb 1 2011 1:15PM','11574.8','Micron Sub 503','0' union all

    select 'Feb 1 2011 1:15PM','12992.7','Point of Woods','0' union all

    select 'Feb 1 2011 1:15PM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 1:15PM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 1:15PM','10608.6','Prince William S','0' union all

    select 'Feb 1 2011 1:30PM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 1:30PM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 1:30PM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 1:30PM','20038.9','Airport Sub','0' union all

    select 'Feb 1 2011 1:30PM','-12.9741','BATT CHST 125','0' union all

    select 'Feb 1 2011 1:30PM','-11.4029','BATT CHST 346','0' union all

    select 'Feb 1 2011 1:30PM','11602.7','Battery Heights','0' union all

    select 'Feb 1 2011 1:30PM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 1:30PM','2928.56','Lomar Sub 600','0' union all

    select 'Feb 1 2011 1:30PM','4304.21','Lomar Sub 601','0' union all

    select 'Feb 1 2011 1:30PM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 1:30PM','9999.99','Micron Sub 500','0' union all

    select 'Feb 1 2011 1:30PM','9930.03','Micron Sub 501','0' union all

    select 'Feb 1 2011 1:30PM','8275.08','Micron Sub 502','0' union all

    select 'Feb 1 2011 1:30PM','11600.3','Micron Sub 503','0' union all

    select 'Feb 1 2011 1:30PM','12882.3','Point of Woods','0' union all

    select 'Feb 1 2011 1:30PM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 1:30PM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 1:30PM','10574.3','Prince William S','0' union all

    select 'Feb 1 2011 1:45PM','0','AIRP GATEWAY','0' union all

    select 'Feb 1 2011 1:45PM','0','AIRP VMEA CR','0' union all

    select 'Feb 1 2011 1:45PM','0','AIRP WTP','0' union all

    select 'Feb 1 2011 1:45PM','20156.6','Airport Sub','0' union all

    select 'Feb 1 2011 1:45PM','-13.0804','BATT CHST 125','0' union all

    select 'Feb 1 2011 1:45PM','-11.4102','BATT CHST 346','0' union all

    select 'Feb 1 2011 1:45PM','11432.9','Battery Heights','0' union all

    select 'Feb 1 2011 1:45PM','0','LOM GT DSL','0' union all

    select 'Feb 1 2011 1:45PM','2926.42','Lomar Sub 600','0' union all

    select 'Feb 1 2011 1:45PM','4285.14','Lomar Sub 601','0' union all

    select 'Feb 1 2011 1:45PM','0','MIC GT GAST','0' union all

    select 'Feb 1 2011 1:45PM','9904.81','Micron Sub 500','0' union all

    select 'Feb 1 2011 1:45PM','9976.38','Micron Sub 501','0' union all

    select 'Feb 1 2011 1:45PM','8285.18','Micron Sub 502','0' union all

    select 'Feb 1 2011 1:45PM','11482.2','Micron Sub 503','0' union all

    select 'Feb 1 2011 1:45PM','12854','Point of Woods','0' union all

    select 'Feb 1 2011 1:45PM','0','PRINCE DEAN1','0' union all

    select 'Feb 1 2011 1:45PM','0','PRINCE DEAN2','0' union all

    select 'Feb 1 2011 1:45PM','10668.1','Prince William S','0' union all

    select 'Feb 1 2011 2:00PM','0','AIRP GATEWAY','0'

  • OKAY! Second poster "Cold Coffee" was on the right track and I made one mod which made it work.

    You had avg(meter_data1) so I changed that to SUM(Meter_Data1)/4 and that got it!!

    I have to sum all the data points between the hour and divide by 4 because of the 4 parts of the hour. That did it!

    Thank you BOTH for your help. I have learned a few different ways to do things now. I save everyone's stuff so even if it didn't do quite what it was supposed to do, I can always pull from those queries examples of other things I can do.

Viewing 9 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic. Login to reply