Viewing 15 posts - 136 through 150 (of 298 total)
Works perfect for me on 2005 and 2008 (via SSMS)... Top set of reports!
February 4, 2010 at 3:25 am
Dave
Thanks for the reply...
I current am running 9.00.4226, which is SP3 CU6. According to my monitoring tools the server was maxing CPU before the 0900 job for deadlock notification...
February 4, 2010 at 2:35 am
vstitte (2/1/2010)
Doesn't xp_readerrorlog take some parameters.
Correct. I just use the above script as a job to notify me of any certain alerts
You could try
EXEC xp_readerrorlog 6,1,'dbcc'
Change the 6 to...
February 1, 2010 at 5:48 am
Which DBCC commands are you tring to audit?
In most cases you can query the Error log to find out when they are run.
DECLARE @ErrorLog TABLE
(
LogDate DATETIME...
February 1, 2010 at 5:27 am
Table variable are limited (IMO) if you are dealing with a large number of records.
I have found that using large record set temp table can offer better performace (if...
January 29, 2010 at 10:01 am
Try the list below. I have used this myself as it help with formatting too.
http://www.c-sharpcorner.com/UploadFile/mgold/Query2Excel12032005011029AM/Query2Excel.aspx
January 8, 2010 at 1:37 am
If your talking about within SSMS then it is displayed at the bottom of each query window you open.
Or you can run SELECT @@SPID
January 8, 2010 at 1:33 am
Is the SQL server under pressure, i.e. high CPU, % RAM used, Long running queries etc etc
January 5, 2010 at 9:21 am
Doesn't matter if it's before or after, unless it's doing a sampled update. If it's a sampled update then doing it after the indes rebuild is a very bad idea...
December 14, 2009 at 10:18 am
Im with Lynn on this one..
In times when queries were running slower than usual I found it to be either the stats or the proc cache.
Simply adding the recompile (as...
December 14, 2009 at 8:19 am
You could use the "Execute As" function in the SP.
This user would have existing on both servers and the relevant permissions to select/update/delete on the table(s) in the SP.
December 14, 2009 at 3:16 am
There are a few books out there but on the other hand I like to review articles and blogs.
A few are below which I have used in the past..
http://www.sql-server-performance.com/articles/clustering/clustering_best_practices_p1.aspx
http://www.sql-server-performance.com/articles/clustering/clustering_resources_p1.aspx
A good...
December 8, 2009 at 3:35 pm
The only way I can think of without using .NET is to open/parse the rdl (as it is XML) and extract the SQL statement (should be found the <Query> and...
December 8, 2009 at 3:25 am
Are you running manual scripts to rebuild indexes or the standard MS plan?
If you your using a script you could try setting the "SORT_IN_TEMPDB" (If your recovery model is not...
December 7, 2009 at 2:02 pm
Viewing 15 posts - 136 through 150 (of 298 total)