Viewing 15 posts - 11,311 through 11,325 (of 14,953 total)
While loop counter:
declare @Counter int;
select @Counter = 1;
while @Counter <= 100000
begin
print @Counter;
set @Counter = @Counter + 1;
end;
Same machine. 16 seconds first run, 14 seconds second run, 13 third run....
January 26, 2009 at 12:38 pm
And, if you're asking me about hierarchy resolution with a cursor as opposed to a recursive CTE (asking me to put my code where my mouth is, essentially), here you...
January 26, 2009 at 12:18 pm
Jeff Moden (1/26/2009)
GSquared (1/26/2009)
You keep mentioning that recursive CTEs are worse than cursors. I can see that in some cases, but in cases like...
January 26, 2009 at 12:18 pm
Will Summers (1/26/2009)
January 26, 2009 at 11:20 am
Is that from when I told someone to stop using those on you, Jeff? Just last week, if I remember correctly.
January 26, 2009 at 11:18 am
I think my best example of "whoops! How did I miss that!?!" was my two-part article on audit trails and logging, and I completely forgot to include anything about server...
January 26, 2009 at 11:17 am
The other thing that can be done is work with non-profit/church/whatever groups as a volunteer.
January 26, 2009 at 11:07 am
I've never read anywhere that there's a maximum size to an index. Wouldn't make sense if there were, since the index really can't be bigger than the table. ...
January 26, 2009 at 9:36 am
I'd say that your best bet is to start with working out what tables you need, how portable your code is, and so on. SSIS can help with loading...
January 26, 2009 at 9:22 am
If you want them to be able to do anything within the instance, yes.
January 26, 2009 at 8:42 am
Take a look at CLR coding in SQL. Books Online has data on it. That might do what you need.
January 26, 2009 at 8:41 am
I'm not sure, but I think there's a way to get a data reader to deal with an empty recordset.
If that's not the best way to do this, there are...
January 26, 2009 at 8:39 am
If you use Case statements, include all necessary tests.
For this, you need to have something like:
case
when date1 > date2 and date1 > date3 then date1
when date2...
January 26, 2009 at 8:36 am
I'd say the first thing to do is to double-check the settings on your log file, and make sure it's actually allowed unlimited growth and that it's actually on a...
January 26, 2009 at 8:25 am
You might want to take a look at the Row_Number, Rank and Dense_Rank functions in Books Online. I'm not sure, but they seem to fit what you're looking for...
January 26, 2009 at 8:22 am
Viewing 15 posts - 11,311 through 11,325 (of 14,953 total)