Viewing 6 posts - 1 through 6 (of 6 total)
Kit G (2/17/2010)
cmallain (2/17/2010)
February 17, 2010 at 11:04 am
Alvin Ramard (2/17/2010)
cmallain (2/17/2010)
February 17, 2010 at 10:38 am
Or...has anyone considered that some of us do not know where to look and with being thrown into situations really do not have the time to do the research...
February 17, 2010 at 10:13 am
this is how I formatted the time (using msdb.dbo.sysjobs though...). I am fairly new to more advanced SQL so hopefully I didn't waste too much time after seeing that above...
December 15, 2009 at 10:56 am
All I needed was to number each row. I figured it out by doing the following:
select distinct
ListVal=count(a1.eventid) --listval can be any fieldname that you'd like
,a1.eventid
,a1.eventdesc
from...
October 14, 2009 at 1:03 pm
HI, sorry if this is wrong place to put this but the example:
with
list as (
select
name as value,
row_number() over(order...
October 14, 2009 at 11:13 am
Viewing 6 posts - 1 through 6 (of 6 total)