Viewing 15 posts - 91 through 105 (of 1,539 total)
Ninja's_RGR'us (7/27/2011)
http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-1/
This set of article by Gail is one of the best for analyzing query performance and otimizing them.
July 27, 2011 at 5:35 am
Find out queries which are taking longer time and try to optimize them.
Is the server capable enough to handle the load you're putting in?
Are there fragmentation in indexes?
Are the statistics...
July 27, 2011 at 4:36 am
Use windows performance monitor tool(perfmon) or use dmv sys.dm_os_performance_counters.
July 27, 2011 at 4:30 am
douwe.rijpsma (12/1/2010)
Expl: I have 2 databases: DB1 on server1 and DB2 on server2. I want to keep...
December 1, 2010 at 7:30 am
Or is it that since this is a maintainence statement (not a DML query), it didn't have a plan in the plan cache and hence no plan_handle?
I've read that relation...
December 1, 2010 at 5:16 am
can you be more clear on your question.
if a job is disabled, it wont run and hence wont perform the task it was supposed to perform.
November 30, 2010 at 3:46 am
after more than 12 hours, that session is no more active. no open transactions in msdb. log size came back to 45 MB. Nothing done from our side:cool:.
November 30, 2010 at 3:34 am
Ok. here is the query. May be you guys can help me better this. Or tell me what all things should i exclude/include.
-- Script written to find and report long...
November 30, 2010 at 12:56 am
Thanks Craig. 🙂
As of now i have written a script that emails a set of users whenever a query crosses the threshold (which is 8 minutes for them). It is...
November 29, 2010 at 10:28 am
Thanks for your reply.
There is an application whose command timeout is set at 8 minutes. App team thinks any query taking more than 8 minutes should be timed out....
November 26, 2010 at 5:49 am
a_ud (11/24/2010)
How can you...
November 24, 2010 at 3:37 am
sys.dm_exec_query_stats gives you cummulative stats for query plans that have been executed.
Trace will suit your requirement. Run a trace during that time and sort on duration to see which all...
November 24, 2010 at 2:50 am
@RadM (11/23/2010)
I have the same question :
You could have opened a new thread for your query since this thread is too old.
SQL 2000
I want to run a backup of...
November 24, 2010 at 2:45 am
jolan.mahinay (11/23/2010)
November 23, 2010 at 3:51 am
run the code provided by franco in the previous post. This would give you an idea of how much space is allocated to the mdf and ldf files. Backup size...
November 23, 2010 at 3:44 am
Viewing 15 posts - 91 through 105 (of 1,539 total)