Viewing 12 posts - 1 through 12 (of 12 total)
The query given in "Detecting Heaps" will also list tables that have indexes, for example non-clustered PK.
February 15, 2016 at 10:17 pm
I really didn't see the date "TenCenturies" posted 🙁
But, could help the future visitors though.
March 8, 2015 at 6:21 pm
Did you try reducing the max server memory on the SQL Server intance, leaving more memory to the OS?
This solved in one of my instances.
March 7, 2015 at 5:27 pm
One way to reproduce this wait type is documented here:
http://www.quicktechnotes.com/2014/12/25/wait-type-preemptive_os_getprocaddress/
December 24, 2014 at 8:14 pm
A possible solution is with SP3.
http://www.quicktechnotes.com/2014/11/15/session-reset-for-connection-pooling-and-sp3/
November 24, 2014 at 8:00 am
No, SP2 followed by any CU does not seem to help resolve this issue. With this version "Microsoft SQL Server 2008 R2 (SP2) - 10.50.4286.0 (X64) May 29...
April 27, 2014 at 1:35 am
Dropping of global temp table can be tested this way too:
Create the global temp table in a query window.
Close it.
Open another query window and try to access it.
Excellent article !
June 10, 2009 at 1:56 pm
I want to add that your code is fail-safe and always runs without error, irrespective of the source table structure changes.
October 10, 2006 at 5:21 pm
To achieve this, you may go for DBCC DBREINDEX.
Please try this command on the target table.
It is faster and more efficient since you are running for several databases.
April 17, 2006 at 8:10 pm
For the scheduling, you can make use Job Scheduler under SQL Server Agent available in SQL Server. Did yoy think about the server resources ?
Books-online
DBCC CHECKDB is...
April 17, 2006 at 12:23 am
Viewing 12 posts - 1 through 12 (of 12 total)