Viewing 15 posts - 46 through 60 (of 97 total)
Doug Bishop (1/21/2011)
January 21, 2011 at 10:00 am
GilaMonster (1/21/2011)
the sqlist (1/21/2011)
...
Included columns do affect the...
January 21, 2011 at 6:37 am
"Include columns are useful in that they are columns available in the index but not contributing to the size of the index key"
I don't think this is true. I worked...
January 21, 2011 at 5:26 am
yordan.georgiev (11/25/2010)
*** Don't just give the hungry man a fish, teach him how to catch it as well.
In my opinion this is exactly what I did ; )...
November 25, 2010 at 9:23 am
@yordan.georgiev
I checked your batch file on your blog but can you describe a little bit what and how is it doing?.
Thanks.
November 25, 2010 at 8:16 am
Jeff Moden (10/2/2009)
the sqlist (10/2/2009)
What is the purpose of set statistics time on inside the function?Displays CPU consumption and Duration.
Yes, I am perfectly aware of that. My question was why...
October 2, 2009 at 9:21 am
Paul White (10/1/2009)
go
set statistics time on
declare @bb int;
select @bb = N from [dbo].[ufn_Tally2] (1, 10000000, 1)
set statistics time off
go
set statistics time on
declare @bb int;
select top (10000000)
...
October 2, 2009 at 7:58 am
Jeff Moden (9/22/2009)
Heh.... now I'm not sure how you are testing. Like I said before... Lynn's runs in under 6 seconds for a 10M gen... yours (after adding 1...
September 22, 2009 at 2:06 pm
Jeff Moden (9/22/2009)
I'm using SQL SERVER Profiler with the data produced by the queries routed to a temp table. Routing the output to the screen gives false readings because...
September 22, 2009 at 1:56 pm
Jeff Moden (9/22/2009)
Heh... the logic is simpler but it's still an eyefull, isn't it? 🙂
The other problem with that method is performance. It takes more than a minute to...
September 22, 2009 at 1:38 pm
laughingskeptic (9/22/2009)
declare @i bigint
set @i = 0
select @i=@i+1...
September 22, 2009 at 1:32 pm
Nice article but it has a problem: the function CAN'T be created (or it's code used) on SQL server 2000 because of the CTE approach and and row_number() function; beside...
September 22, 2009 at 12:48 pm
What hapens to the index files (NDF) if they exist?
August 27, 2009 at 10:07 am
vikas_kalra (8/27/2009)
Your article is very interesting, but this raised some questions in my mind.
One can adopt this approach as long as the two procedures/ functions are in the...
August 27, 2009 at 8:36 am
tpa (8/4/2009)
For daily scripts deployment on multiple databases, I usually build a SQLCMD script in 2 steps:
1. Copy the .sql file paths into a new...
August 5, 2009 at 9:06 am
Viewing 15 posts - 46 through 60 (of 97 total)