Viewing 15 posts - 46 through 60 (of 62 total)
jeffery.baynard (11/24/2008)
Itzik uses RECURSION, even faster.With nums as
(
Select 1 as n
Union all
Select n+1 from nums where n < 10
)
Select n
From nums
I...
November 24, 2008 at 8:42 am
The first place I came across using a numbers table was from a Joe Celko book. I take a slightly different approach, typically using a view (with the following...
November 24, 2008 at 7:33 am
Ria (11/21/2008)
how can i redirect rows to trash destination...as i dont want them to put to data reader destination as they are of no use to me
Something that I have...
November 21, 2008 at 6:22 pm
I would like to “second the motion” of putting an article together around this.
November 19, 2008 at 9:11 am
I ran into this situation a while back, and I started using code / procedures similar to what has been presented so far. I then decided to look at...
September 3, 2008 at 8:46 am
I think that would be very helpful. I've been browsing for more detail on this subject (Generate RSS from SQL Server) since I posted my question and the tendency...
May 15, 2008 at 7:43 am
I haven't had the chance to review all of the series that you have here, but from what I have read so far it is really helpful. I do...
May 15, 2008 at 7:07 am
Nice article: I've had to create HTML emails from SS for a while and have had to do all of my work in stored procedures.
I'm curious, have you considered doing...
April 23, 2008 at 7:48 am
I've thought about this over the years for any number of reasons. The "best" idea I came up with was to use "printed digital information". Some years back...
January 14, 2008 at 10:18 am
I haven't had the chance to test performance (BETWEEN versus >= and <=...), I'm lucky if I get any chance to go back and "cleanup" stuff that I write.
I am...
December 28, 2007 at 5:39 pm
Relating to default values and NULL's: in the areas where I do most of my work (performance data, DW, and reporting) I have a couple of scenarios where I need...
December 28, 2007 at 8:01 am
Steve Jones - Editor (12/27/2007)
...the solar and wind subsidies were removed.
I don't suppose they removed the subsidies on Ethanol as well? That was one of those that I...
December 27, 2007 at 11:29 am
Nice editorial. A couple of "opinions";
micro-nuclear is great, and even though it could be used in some locations, I want to see that used in spacecraft. Imagine what...
December 27, 2007 at 9:25 am
I was thinking about stuff along these lines last night after posting my reply. My application is fundamentally a data warehouse. It loads up bulk data on an hourly basis, runs...
August 7, 2007 at 8:53 am
"If your index design is bad enough to offset the performance gain of raid 10 then it'll be 4 times worse on raid 5, sorry but that is such an absurd...
August 6, 2007 at 10:06 am
Viewing 15 posts - 46 through 60 (of 62 total)