Viewing 15 posts - 7,651 through 7,665 (of 8,416 total)
isabel (6/22/2009)
Hi, how often do i need to maintain my indexes (executing dbcc dbreindex)?
Use ALTER INDEX ... REBUILD | REORGANIZE instead of DBCC DBREINDEX (it is deprecated and will be...
June 24, 2009 at 6:36 am
DBCC REINDEX is deprecated in SQL Server 2005 and 2008. It will be removed from the next version, you should use ALTER INDEX instead. All logged operations will...
June 24, 2009 at 6:29 am
My guess (FWIW) is that the question is about moving a table to a secondary filegroup (typically named *.NDF)
If so, the following MSDN article explains files and filegroups and links...
June 24, 2009 at 6:22 am
MSDN: Detecting and Ending Deadlocks contains full information on the trace flags mentioned.
Unsure where Abhay has seen a table-level UPDATE lock.
Also unsure how extent locks (which are only used for...
June 24, 2009 at 6:17 am
Grant Fritchey (6/24/2009)
I read it the same way for what it's worth.
I think that makes $0.04 in total 😉
P.S. Enjoyed your article today Grant
June 24, 2009 at 5:57 am
Oh, while I think of it, one thing you might find interesting is that the 'wait resource' associated with a lock - a string like (0801c4e1f5e4) for example - can...
June 24, 2009 at 5:46 am
The deadlock graph you provided shows only the HoBt (heap or B-tree) ID involved - which for SQL 2005 will be the same as the partition ID in sys.partitions. ...
June 24, 2009 at 5:34 am
The simple answer is that SQL Server only guarantees to return zero on success - but then you knew that 😉
If the stored procedure doesn't provide an explicit return value...
June 24, 2009 at 4:55 am
Sheng (6/23/2009)
And...
June 24, 2009 at 4:26 am
I know I just seem to be posting links here, but http://technet.microsoft.com/en-us/library/cc966413.aspx is a Microsoft white paper on SQL Server 2005 Performance Tuning using the Waits and Queues methodology. ...
June 24, 2009 at 3:58 am
Hey Ed,
Maybe we read the original post differently, but:
DBA (6/9/2009)
Hi, i have many complains of having lock escalations in my DB
Notice the word 'complains' not 'complaints' - I took this...
June 24, 2009 at 3:47 am
From the same white paper:
http://technet.microsoft.com/en-us/library/cc966413.aspx
June 24, 2009 at 3:39 am
RBarryYoung (6/24/2009)
June 24, 2009 at 1:36 am
hi_abhay78 (6/23/2009)
add this : select rtrim(cast(GETDATE() as varchar(12)))
Abhay,
1 Using CONVERT with a style parameter when converting date-time to string is more robust and explicit.
2 Your statement does not work correctly...
June 23, 2009 at 7:12 pm
Gail's method has the distinct advantage of being able to seek using an index. The other methods would have to scan the table or the whole index.
There was a...
June 23, 2009 at 6:58 pm
Viewing 15 posts - 7,651 through 7,665 (of 8,416 total)