Viewing 15 posts - 1,291 through 1,305 (of 1,415 total)
Steve Jones - SSC Editor (7/26/2013)
Jeff Moden (7/26/2013)
L' Eomot Inversé (7/24/2013)
I haven't got enough hair to have bad hair days 🙂
BWAAA-HAAA!!! I've got tons of hair. I'm just...
July 26, 2013 at 10:10 am
octavuslimited (7/19/2013)
July 22, 2013 at 9:19 am
Grant Fritchey (7/19/2013)
July 19, 2013 at 10:06 am
Khalid Hanif-458693 (7/16/2013)
patrickmcginnis59 10839 (7/16/2013)
keebler96 (7/16/2013)
The order of the previous and the next rows should be ordered just like the SQL has inserted according to the primary keys.
This is the...
July 16, 2013 at 9:42 pm
keebler96 (7/16/2013)
The order of the previous and the next rows should be ordered just like the SQL has inserted according to the primary keys.
This is the problem. There is...
July 16, 2013 at 2:22 pm
Khalid Hanif-458693 (7/16/2013)
prevcostcenter, prevpaymentcode, previnvno, nextcostcenter, nextpaymentcode, nextinvno
I have tried the rownumber the estimated rows in the execution plan is always the total rows Iin the...
July 16, 2013 at 11:19 am
RobertYoung (7/15/2013)
patrickmcginnis59 10839 (7/15/2013)
RobertYoung (7/15/2013)
patrickmcginnis59 10839 (7/15/2013)
Vila Restal (7/12/2013)
July 15, 2013 at 6:07 pm
RobertYoung (7/15/2013)
patrickmcginnis59 10839 (7/15/2013)
Vila Restal (7/12/2013)
July 15, 2013 at 11:06 am
Vila Restal (7/12/2013)
July 15, 2013 at 9:30 am
You could treat the parameters of your report as update requests and send these parameters to a stored procedure.
July 10, 2013 at 9:54 am
select substring(name,charindex('gr',name),2)
from ...
worked for me!
June 25, 2013 at 10:46 am
ben.brugman (6/11/2013)
patrickmcginnis59 10839 (6/11/2013)
June 11, 2013 at 11:22 am
I got something similar to work, LOL at the quotes needed, plus it doesn't seem like "Initial Catalog" is any help, but I put it in there anyways:
SELECT * INTO
#TMP1
FROM
OPENROWSET...
June 11, 2013 at 7:10 am
The query looked ok to me (well except for the 'count' clause, not sure how thats working in isolation without an accompanying 'group by'). You might want to double check...
June 10, 2013 at 7:06 am
You need to match the keys in both tables!
select T1.[History_Key]
FROM
LOAD_SCHED as T1
WHERE NOT EXISTS (SELECT distinct T3.[Archive_Key] FROM Archive_LOAD_SCHED AS T3 where T1.history_key = T3.archive_key)
June 7, 2013 at 6:07 am
Viewing 15 posts - 1,291 through 1,305 (of 1,415 total)