Viewing 11 posts - 1 through 11 (of 11 total)
Thank you Gail. I am learning.
We had faced a similar problem with SSIS (64 bit system )and hence the link. Reducing the max server memory settings solved our issue
May 3, 2011 at 2:29 am
SQL Server "max server memory" controls only th BufferPool memory. SSIS, LOB data,CLR process, SQL Agent process etc, do not use BufferPool memory of SQL Server. They use what is...
May 3, 2011 at 12:42 am
Accepted that his is not going to reenable the indexes.
But since krishnaroopa has mentioned that he has disabled two indexes by mistake. This implies that othe indexes might exist, and...
May 3, 2011 at 12:18 am
Have TABLOCK hint placed on the table.
This will be minimally logged.
http://msdn.microsoft.com/en-us/library/ms190422(v=SQL.90).aspx
May 3, 2011 at 12:07 am
DISTINCT performs a implicit SORT. You can check the query plan.
When SQL Server finds that there is not enough memory to perform SORT it spills it to tempdb.
Whenever data is...
May 2, 2011 at 11:57 pm
Try Updating statistics of all tables with full scan
May 2, 2011 at 11:42 pm
Enable TRACE FLAG 1222 . This will output the deadlock trace to SQL Server log file.
Try to understand why it occured.
May 2, 2011 at 11:40 pm
Check for Process:Working set counter for each SQL server instance process. If this value is less than SQL Server's Memory Manager:Total Server memory counter , than you have an...
May 2, 2011 at 11:36 pm
During backup was there any huge DML task going on.
during recovery,When the waittype is suspended, this indicates that, data is being spilled to tempdb during recovery. Hence resulting in a...
May 2, 2011 at 11:23 pm
Linked servers per se are not bad when you want to pull small amounts of data.
Second point is when you are having a explicitly defined transaction in distributed transaction...
May 2, 2011 at 11:05 pm
Viewing 11 posts - 1 through 11 (of 11 total)