Viewing 15 posts - 1,096 through 1,110 (of 1,228 total)
Paul White (3/14/2010)
Where have all the questions gone? Seems very quiet...perhaps too quiet...
Ah, that will be why your recent posts have been given a full designer makeover then!
March 14, 2010 at 8:53 am
Gabriel P (3/13/2010)
That's very nice work. I ran it on the code I used in the article, and modified all the decimal variables/fields to (8,2) and it provided just...
March 13, 2010 at 10:24 am
I wonder...
Make some data:
DROP TABLE #Temp
SELECT TOP 1000000
RowID = IDENTITY(int, 1, 1),
Avg20day = CAST(NULL AS DECIMAL(16,6))
INTO #Temp
FROM master.dbo.syscolumns a, master.dbo.syscolumns b
CREATE UNIQUE CLUSTERED INDEX RowID ON #Temp (RowID)
--...
March 12, 2010 at 2:57 pm
CirquedeSQLeil (3/11/2010)
ChrisM@home (3/11/2010)
CirquedeSQLeil (3/11/2010)
Off to the desert I go (or should it be dessert 😉 ). Lynn is the tent available?
To paraphrase Nicole Kidman..."I get to sleep with a...
March 11, 2010 at 3:14 pm
CirquedeSQLeil (3/11/2010)
Off to the desert I go (or should it be dessert 😉 ). Lynn is the tent available?
To paraphrase Nicole Kidman..."I get to sleep with a hippo"
March 11, 2010 at 3:00 pm
Jeff Moden (3/10/2010)
...master of the high velocity pork chop. 😛
20,022 posts 5 minutes ago. Here's a BIG friggin' beer to the old git who taught me most of what...
March 11, 2010 at 1:03 pm
GSquared (3/11/2010)
CirquedeSQLeil (3/11/2010)
GSquared (3/11/2010)
As promised a couple of months ago, I've updated to having a beard in my pic. 🙂Holy Crap - who is that?
That's me with 2 months...
March 11, 2010 at 12:57 pm
Timothy
If your version really is SS2K8 then you should have a quick peek in BOL at text datatype to get a good idea of why you should change your column...
March 10, 2010 at 3:15 pm
Blimey! I was going to suggest it was because in query 1, the workorder table isn't in the FROM list, so the WHERE clause wouldn't work, leading to an unrestricted...
March 10, 2010 at 2:29 pm
GilaMonster (3/8/2010)
ChrisM@home (3/8/2010)
You have an echo, Gail. I nearly wasted a mouthful of beer reading the OP's reply to your post.
Look at the times of the posts. I was editing...
March 8, 2010 at 1:49 pm
GilaMonster (3/8/2010)
And the vague question of the week award goes to....
...
<drum roll>
...
....
http://www.sqlservercentral.com/Forums/Topic878772-1292-1.aspx
You have an echo, Gail. I nearly wasted a mouthful of beer reading the OP's reply to your post.
March 8, 2010 at 12:49 pm
No problem...
;WITH OrderedSource AS (
SELECT ExecSeq = ROW_NUMBER() OVER (ORDER BY ID, EntryDate),
RowOfID = ROW_NUMBER() OVER (PARTITION BY ID ORDER BY ID, EntryDate),
RowsPerID = COUNT(ID) OVER(PARTITION BY ID),...
March 7, 2010 at 12:35 pm
Jeff Moden (3/7/2010)
March 7, 2010 at 9:23 am
lmu92 (3/7/2010)
ChrisM@home (3/7/2010)
You've posted a third method for resolving this job, late on a saturday night after a few beers because you had a spare 5 minutes. Puts it...
March 7, 2010 at 3:20 am
Lowell (1/27/2010)
March 7, 2010 at 3:08 am
Viewing 15 posts - 1,096 through 1,110 (of 1,228 total)