Viewing 15 posts - 1 through 15 (of 49 total)
Thanks Jeff for this nice and very well explained article.
December 1, 2010 at 2:27 am
Alexey Voronin (10/15/2010)
October 15, 2010 at 4:23 am
I tried to check time taken by the suggested SQL on my machine.
I have a table containing 10404147 rows. Searched on a varchar column, which is not a part of...
August 11, 2010 at 1:07 am
Nice article and I think better approach.
I have solved the same problem but in different way. Please have a look.
http://www.sqlservercentral.com/articles/Comma+seperated/67417/
Thanks,
Nizam
August 10, 2010 at 3:27 am
Nils Gustav Stråbø (5/20/2010)
mohd.nizamuddin (5/20/2010)
Can you please put some light on the excution plan of this SP, while writing dynamic SQL.
As per knowledged, the...
May 20, 2010 at 1:06 am
Vladimir Basanovic (5/20/2010)
Maybe you should consider rewriting original function with coalesce on every parameter. That's how you would avoid table scan if the parameter is null.BR,
Vladimir
Is it Vladmir... 😎
Thanks for...
May 20, 2010 at 12:42 am
Very well written, a nice article.
Can you please put some light on the excution plan of this SP, while writing dynamic SQL.
As per knowledged, the execution plan won't be...
May 20, 2010 at 12:38 am
Oleg Netchaev (4/13/2010)
April 13, 2010 at 10:29 pm
Paul White NZ (4/12/2010)
mohd.nizamuddin (4/12/2010)
I have a doubt, since the UDTF would get executed as many times as the row count...
April 12, 2010 at 3:19 am
Nice Article Paul. It is very well expalined with example.
I have a doubt, since the UDTF would get executed as many times as the row count of primary resultset (Student's...
April 12, 2010 at 2:53 am
Very nice and informative article...
This is what we do in real life as well (Use of SELECT *). Even though we hear from everybody that to avoid SELECT * always.
So,...
January 17, 2010 at 11:58 pm
Thank you Paul, for your detailed explanation. Really this help me a lot to know something extra about the SQL.
January 12, 2010 at 3:25 am
Jeff Moden (1/8/2010)
January 10, 2010 at 9:57 pm
nadabadan (1/8/2010)
The reason you get Sandeep as a result is because DISTINCT.
.
.
Look into virtual tables if you want to know how sql processes a query internally.
Thanks a lot. I...
January 10, 2010 at 9:33 pm
Excellent article.
BTW I have another version of CTE, which splits delimited string without tally table. I think it works efficiently, also. Please have a look...:-)
DECLARE
@list VARCHAR(MAX),
...
January 8, 2010 at 5:01 am
Viewing 15 posts - 1 through 15 (of 49 total)