Viewing 15 posts - 346 through 360 (of 542 total)
Sorry Ninja, I did not get you...do you mean set up a trace ?
September 23, 2011 at 5:27 am
Could anyone please help me, I am still stuck on this ?
September 20, 2011 at 2:07 am
sdvoranchik (8/30/2011)
August 30, 2011 at 8:03 am
sdvoranchik (8/26/2011)
August 30, 2011 at 3:23 am
sdvoranchik (8/25/2011)
August 26, 2011 at 2:43 am
Hi,
I have created a drill through report but I am not getting the desired data in the target report. I dont know what is it that I am doing wrong....
August 25, 2011 at 9:10 am
sdvoranchik (8/24/2011)
August 25, 2011 at 5:49 am
Mike Menser (7/21/2011)
case when ARRIVAL_SCHEDULE_DT = DATEADD (month, 3, getdate()) and VESSEL_NAME = 'BEZEE' then 'N' else '' end +
case when LAST_UPDATE_DT = getdate() and...
August 23, 2011 at 9:20 am
kramaswamy (8/18/2011)
August 22, 2011 at 4:23 am
Sean Lange (8/16/2011)
SELECT
ESO_PORT,
sum(case when ONTIME_S = 'On Time' then 1 else 0 end)...
August 16, 2011 at 9:36 am
GilaMonster (8/16/2011)
Stick an alias on the subquery (just add AS Sub after the close of the bracket for the subquery)
Thanks very much for your help !
August 16, 2011 at 5:49 am
Charles Hearn (8/16/2011)
SELECT ESO_PORT,
SUM(Ontime_s) Ontime_s,
...
August 16, 2011 at 5:48 am
Charles Hearn (8/16/2011)
SELECT ESO_PORT,
SUM(Ontime_s) Ontime_s,
SUM(Late_s) Late_s,
SUM(Ontime_c) Ontime_c,
SUM(Late_c) Late_c
FROM (SELECT
ESO_PORT,
case when ONTIME_S = 'On Time' then 1 else 0 end as Ontime_s,
case when ONTIME_S =...
August 16, 2011 at 5:36 am
Welsh Corgi (8/9/2011)
pwalter,Keep your chin up. Try not to be so hard on yourself no matter how bad it gets.
Regards,
WC
Thanks for your advice Welsh !!! I apologize for my comments...
August 15, 2011 at 4:56 am
Ninja's_RGR'us (8/9/2011)
The first time I got back to school...
August 15, 2011 at 4:54 am
Viewing 15 posts - 346 through 360 (of 542 total)