Viewing 15 posts - 16 through 30 (of 51 total)
Even I tried,,
SELECT qs.sql_handle,qs.statement_start_offset,qs.statement_end_offset,
qs.creation_time,qs.last_execution_time,qp.dbid,qp.objectid,st.text
FROM sys.dm_exec_query_stats AS qs
CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS st
CROSS APPLY sys.dm_exec_text_query_plan(qs.plan_handle, DEFAULT, DEFAULT) AS qp
WHERE st.text like '%AllReqMailGet%'
I am getting ERROR:
Msg 208, Level 16, State 1, Line 1
Invalid...
May 24, 2012 at 1:04 am
Thank you for your reply,
This issue has been solved.
November 11, 2011 at 2:02 am
I am a DBA. the SP is already there in the database. I have the permission to modify .
November 1, 2011 at 11:37 pm
Thanks,
Don't mind..
I am planning to hire somebody to solve the issue.
November 1, 2011 at 8:38 am
Thanks,
I will do the same , as you mention . And also try to hire somebody to solve the issue.
Thanks once again.
November 1, 2011 at 7:59 am
Don't mind , I have not written the code ,,
Somebody has written from client side. Now it is giving problem to client . so they ask me to tune it...
November 1, 2011 at 6:49 am
WHERE PE.PEDONE >= @StarDate AND PE.PEDONE < DATEADD(D, 1, @StarDate)
What is D here.
November 1, 2011 at 6:04 am
Go for it :
EXEC sp_configure 'max server memory (MB)', 26624 --26 GB
GO
RECONFIGURE
GO
November 1, 2011 at 5:50 am
Go for it :
EXEC sp_configure 'max server memory (MB)', 26624 --26 GB
GO
RECONFIGURE
GO
November 1, 2011 at 5:50 am
Also write the version of SQL as well as Windows server.
November 1, 2011 at 4:57 am
Look for open transaction if, any.
Run DBCC freeproccache -- to release proc.
November 1, 2011 at 4:55 am
Find, where the memory is leaking ?
Execute :
DBCC memorystatus
And look for
Cachestore_SQLCP(node 0)
find the memory usage in "...
November 1, 2011 at 4:52 am
In this server The total databases sizes are around 50 GB. The problem is that ,SQL Server: Object Lock Average Wait and
SQL Server: Page Lock Average Wait is...
September 23, 2011 at 1:06 am
Viewing 15 posts - 16 through 30 (of 51 total)