Viewing 15 posts - 211 through 225 (of 279 total)
Chirag (3/27/2009)
March 27, 2009 at 6:20 am
Hmm, that's a thought
I have full control over how the data comes in (I designed the SSIS package to do it)
Unfortunately there's no real order, as such. Our Id fields...
March 27, 2009 at 6:10 am
Thanks Grant
So the order in which I'd reorg indexes would not be important then, I expect?
The tables are reasonably small (generally under 20000 rows), so I'm going to monitor for...
March 27, 2009 at 5:58 am
Lynn Pettis (3/26/2009)
March 27, 2009 at 5:52 am
Do these tables have clustered indexes?
March 26, 2009 at 5:12 am
Something like this could work, assuming "TOP -1" means you want the second from the top!
SELECT ...
FROM
(SELECT TOP 2 ... , ROW_NUMBER() OVER (ORDER BY statut DESC) as rownum)
WHERE rownum...
March 26, 2009 at 4:14 am
Well, the beer festival was much fun (although my head would disagree this morning). I partook in Ale Caesar, Mad March Bear, Black Dog, Dark Brains among others, but missed...
March 21, 2009 at 3:15 am
hehe, current favourite beer name from the links kindly posted: Yellow Snow IPA
All this talk is making me very thirsty!
March 20, 2009 at 8:36 am
Grant Fritchey (3/20/2009)
I haven't sat down to a hand-drawn real ale since 1993... so... I hate you all. I hope they have nothing left but Coors.
I think the mere mention...
March 20, 2009 at 8:04 am
Chris Morris (3/20/2009)
You lucky lucky *(&^&(*((!
Check out Brewdog from Scotland, the names are great (Punk IPA, Trashy Blonde) and the beers are excellent.
Thanks for the tip.
I'm only a very recent...
March 20, 2009 at 6:47 am
Chris Morris (3/20/2009)
mazzz (3/20/2009)
Is that Sainsbury's, UK?If so I must investigate
Yep and if you're London-based it gets better 😎
Leeds-based, so I'm off here this evening: Leeds beer festival[/url] 😀
And when...
March 20, 2009 at 6:19 am
Chris Morris (3/20/2009)
Beer? Did someone say beer?Hey Derek, have you tried the Meantime IPA currently stocked by Sainsbury's yet? Another microbrewery I think. Lovely stuff!
Is that Sainsbury's, UK?
If so...
March 20, 2009 at 5:56 am
I'd use something like this in your UDF:
declare @val varchar(50)
declare @p varchar(10) -- phone number
declare @e varchar(10) -- extension
set @val = '(950) 993-1151....9999'
WHILE PATINDEX('%[^0-9]%',...
March 20, 2009 at 4:21 am
Is the phone number (without the extension) always the same number of figures, ignoring brackets, full stops, etc?
It looks like it from the sample data you hae provided.
If so I...
March 20, 2009 at 2:02 am
Viewing 15 posts - 211 through 225 (of 279 total)