Viewing 5 posts - 346 through 350 (of 350 total)
select session_id,wait_duration_ms,
wait_type,blocking_session_id
from sys.dm_os_waiting_tasks where session_id >50 and blocking_session_id is not null
Run this and the before query I posted for daily thats it you are done.
October 6, 2010 at 12:13 pm
Use the following query:
see the output query and the tables in the query.
select req.session_id, ses.login_name,req.blocking_session_id,sqltext.TEXT, req.session_id, req.status, req.command, req.cpu_time, req.total_elapsed_time
from sys.dm_exec_requests req left join sys.dm_exec_sessions ses on req.session_id= ses.session_id
cross apply...
October 5, 2010 at 5:44 pm
you told you can see in database you told right.
So why don't you just open it as script as and right click on query analyzer and select tune with DTA.
Simple!
October 5, 2010 at 3:55 pm
I don't see any problem in your server as you said. how you considering as a problem.?
Can you explain little more on that.
October 5, 2010 at 3:29 pm
Hey Gilsha Thank you man for you rreply
recently I solved almost all the issues
by changing the configuration settings.
September 24, 2010 at 1:56 pm
Viewing 5 posts - 346 through 350 (of 350 total)