Viewing 15 posts - 4,126 through 4,140 (of 5,504 total)
Would you mind elaborate the business case?
Especially the part
falls b/w 106886 and 380683 but 380683 is greater than 280164.5 so the value is 45.
Why do you compare the median...
March 2, 2010 at 1:54 pm
What exactly are you trying to do here?
Your "CASE WHEN '2006'..." (and all other similar case statements) don't really make sense. What variable/column is supposed to have a value of...
March 2, 2010 at 1:11 pm
RBarryYoung (3/2/2010)
First, I am convinced that this is just too big to fit into a Forum post. Secondly, I realize that we have sort of hijacked the OPs thread...
March 2, 2010 at 12:34 pm
david.pelizzari (3/2/2010)
lmu92 (3/2/2010)
There are numerous solutions available.
One pretty fast solution is described at the end of the Tally Table article referenced...
March 2, 2010 at 11:24 am
RBarryYoung (3/2/2010)
whoa! Did you know that this is embedding subordinate elements inside of text content? I'm not even sure if that's valid XML...
To me it looks more likt...
March 2, 2010 at 10:17 am
Hunterwood (3/2/2010)
declare @str varchar(200)
set @str = 'Apple, Banana,Orange, Pinapple, Lemon'
declare @result table (string varchar(100))
declare @start int
declare @end int
set @start = 1
set @end =...
March 2, 2010 at 10:11 am
You should look for split string functions on this site.
There are numerous solutions available.
One pretty fast solution is described at the end of the Tally Table article referenced in my...
March 2, 2010 at 8:35 am
Yatish,
is there any specific reason for reposting the same question that can be found here ??
Not only that you split answers across multiple threads, you'll also have several people...
March 2, 2010 at 3:47 am
The two query plans are not identical.
The slow plan is actually processing 2.509.700.160 (2 and a half billion!) rows from tempdb.dbo.#revdates (estimated: 454080). See the thick arrow on the left...
March 1, 2010 at 5:11 pm
Jeff Moden (3/1/2010)
I know you know this, Lutz... just saying this in case anyone thinks otherwise....
Don't rely on the execution plan for differenences in performance either. Sure, it...
March 1, 2010 at 5:00 pm
Actual (not estimated) execution plan. saved as .sqlplan and attached to your post would help a lot.
March 1, 2010 at 2:41 pm
GilaMonster (3/1/2010)
So, which games are you going to be attending?
I hope they'll set up those great public viewing areas again like they did in 2006 over here in Germany....
March 1, 2010 at 1:22 pm
I just stumbled across that Simple Talk article .
I found it very interesting and descriptive. To me the most important message is to not only rely on the results...
March 1, 2010 at 11:23 am
Mad-Dog (3/1/2010)
Hi,try an catch is the only way to allow the proc to continue to run even if he have an error?
THX
Well, you could setup each step of your proc...
March 1, 2010 at 10:01 am
Paul White (3/1/2010)
March 1, 2010 at 9:49 am
Viewing 15 posts - 4,126 through 4,140 (of 5,504 total)