Viewing 12 posts - 1 through 12 (of 12 total)
Stage I
DBCC UPDATEUSAGE
UPDATE STATISTICS (with FULL scan) for all tables
exec sp_recompile for all objects
exec...
August 19, 2008 at 2:51 am
You can also view them in Profiler .
When you set up a new trace ,
Go to the Events Selection Tab , Expand the performance tab , check ShowPlanXML
July 10, 2008 at 2:30 am
Excellent , I have found the articles written by Jeff , to be very useful
July 2, 2008 at 1:58 pm
I agree that 1 transaction log is the way to go - but there are occassions , in emergencies when space issues , allow some flexibility in defining more than...
July 2, 2008 at 5:24 am
I agree that 1 transaction log is the way to go - but there are occassions , in emergencies when space issues , allow some flexibility in defining more than...
July 2, 2008 at 4:55 am
Also consider 1)changing recovery model
2)use TABLOCK
June 20, 2008 at 3:12 am
As well as the above suggestions , are you certain it's a database issue ?
Have you run a trace , to see if there are other issues regarding delays?
Is the...
June 20, 2008 at 3:10 am
We've just had to implement the 2 transaction log files for dealing in space issues- works very smoothly. Although it won't improve performance
June 17, 2008 at 3:12 am
We've just had to implement the 2 transaction log files for dealing in space issues- works very smoothly. Although it won't improve performance
June 17, 2008 at 2:45 am
The statement I'm running from Query Analyzer is :
SELECT myCo1,myCol2 FROM myTable
INNER JOIN MyTable2 ON myTable.thecol = myTable2.thecol
Is there a specific event that would display the COMMIT...
April 29, 2008 at 7:32 am
Thanks for the reply , with the figures I sent across there is just the 1 sql server statement , which I'm confused about the disparity between the the statement...
April 29, 2008 at 5:53 am
Viewing 12 posts - 1 through 12 (of 12 total)