Viewing 15 posts - 46 through 60 (of 71 total)
No problem.
Just to show you the kind of behaviour that you might see, I've uploaded an image of a report showing the behaviour of our SQL Server instance when we...
October 8, 2009 at 11:05 am
rhunt (10/8/2009)
October 8, 2009 at 8:56 am
Jeff Moden (10/8/2009)
Chris,
How did you determine that sp_OA* was actually producing memory leaks? This isn't a challenge... I'd really like to know because I've said such a thing to...
October 8, 2009 at 8:19 am
Just to check the obvious - have you rebooted the server since removing the /3GB switch?
Thinking back there was actually another occasion when we experienced a similar problem with elevated...
October 7, 2009 at 11:38 pm
We had a similar problem last year with CPU usage - when the CPU usage was high we found that Windows would randomly complain of 'insufficient resources' when performing simple...
October 7, 2009 at 2:25 pm
Before creating any new indexes you may wish to consider updating the statistics on the tables involved in the troublesome queries:
http://msdn.microsoft.com/en-us/library/ms187348.aspx
If this doesn't have the desired effect then...
October 7, 2009 at 1:56 pm
I appeciate that you managed to get this to work, but to save time would it be feasible to drop then re-add the column containing the BLOB data? I've used...
September 22, 2009 at 11:29 am
I'm at a loss as to why others are suggesting that the log should be manually truncated, particularly as tempdb is in 'simple' mode and, therefore, should be truncated automatically...
September 22, 2009 at 11:20 am
Here's a link to a page containing details on how to identify tempdb contention, along with the suggestion of creating one data file per CPU:
Cheers
Chris
September 22, 2009 at 11:10 am
Hi David
I don't have an explanation for you, but, if you haven't done so already, it might be worth examining the values of the Database Mirroring performance counters:
http://msdn.microsoft.com/en-us/library/ms189931.aspx
I...
September 22, 2009 at 10:35 am
Mark Jones (9/4/2009)
September 5, 2009 at 3:17 am
I wrote the following sp_block stored procedure to display blocking processes and the processes that they block. I add the stored procedure to the master database of all new SQL...
September 3, 2009 at 12:42 pm
Before going to the trouble of implementing this solution in SQL Server 2005 onwards, I would first invite you to take a look at the documentation on Database Mail to...
August 13, 2009 at 4:34 am
I disagree with point 7 - regarding the sp_ prefix, try the example below.
CREATE DATABASE Test
GO
USE [master]
GO
CREATE PROCEDURE dbo.sp_TempProc
AS
SELECT 'master'
GO
USE [Test]
GO
CREATE PROCEDURE dbo.sp_TempProc
AS
SELECT 'test'
GO
USE [Test]
GO
EXEC sp_TempProc
GO
USE [master]
GO
EXEC sp_TempProc
GO
Chris
August 10, 2009 at 2:38 am
You should consider writing your own code for looping through each of the databases as sp_MSForEachDB is UNDOCUMENTED and, therefore, susceptible to changes, or even removal in future releases of...
July 9, 2009 at 12:41 pm
Viewing 15 posts - 46 through 60 (of 71 total)