Viewing 15 posts - 44,671 through 44,685 (of 49,571 total)
In general the defaults are pretty good and in most cases shouldn't be changed unless you have a good reason. The exception is the max memory if the server in...
September 6, 2008 at 4:52 am
mj obi-wan kenobi (9/5/2008)
September 6, 2008 at 4:09 am
Deepak (9/5/2008)
September 6, 2008 at 4:07 am
Wow. 12 sec to compile...
If this server heavily used? Is that proc getting heavily used?
Can you run it again and trace (filtered by your machine name) the events Cache...
September 6, 2008 at 4:01 am
Gary Johnson (9/5/2008)
mj obi-wan kenobi (9/5/2008)
Pretty strange behavior in 2k5...
Not really.
In query 1, because the expression in the order by is qualified with the table, it's clearly not a...
September 6, 2008 at 3:48 am
I'm assuming this table has a clustered index?
You can drop and recreate the clustered index and specify the new location on another filegroup. Then go and shrink the file...
September 5, 2008 at 12:10 pm
It won't. All the versions of showplan show the same data, just the methods of storing and showing it change.
Look at the seek predicates. If you've got a partial scan,...
September 5, 2008 at 11:58 am
Possibly parameter sniffing. When the optimiser compiles the proc, it will optimise the queries based on the current parameter values, and it will optimise all queries in the proc, regardless...
September 5, 2008 at 11:37 am
Ok, with 3 columns, populated much the same way as the first. I interleaved the queries to make it as equal as possible
set statistics time on
go
DECLARE @param char(1), @param1 char(1),...
September 5, 2008 at 11:25 am
After switching to simple, run a checkpoint. It's the checkpoint that triggers log truncation in simple recovery.
Make very, very sure you take a full backup after switching back to full...
September 5, 2008 at 11:10 am
Is there space free within the data file? What does the following return?
exec sp_spaceused
September 5, 2008 at 11:04 am
Jack Corbett (8/4/2008)
while searching on a range (column between a and b) will get a scan.
If either the start or the end of the range is sargable, a range...
September 5, 2008 at 11:01 am
jluniya (9/5/2008)
So does it mean, the index sequence can be decided on any order? Or is there any logic to decide the index ordering?
There is, and it depends on the...
September 5, 2008 at 10:25 am
When you say 'can't shrink' do you mean it's giving you an error?
Why are you shrinking the data and log files anyway?
September 5, 2008 at 10:14 am
Kenneth Fisher (9/5/2008)
September 5, 2008 at 10:12 am
Viewing 15 posts - 44,671 through 44,685 (of 49,571 total)