Viewing 8 posts - 481 through 488 (of 488 total)
Try
ALTER DATABASE dbname
SET READ_WRITE;
Leo
Is it Friday yet?
May 5, 2010 at 3:21 pm
You could add more columns to the INCLUDE clause. This doesn't increase the size of the root or intermediate index pages, only the leaf level pages. If you don't want...
May 5, 2010 at 3:13 pm
These are the actual two lieces of code causing the problem:
The table is _Log
SELECT TOP (@Count) ID, Data, FROM _Log
WHERE ProcInstID = @ProcInstID
ORDER BY ID ASC
DELETE _Log...
May 3, 2010 at 4:56 pm
Are you using Standard or Enterprise edition?
With Enterprise (if you have the space in TempDB) you could rebuild the index WITH (online = on). Having the indexes defraged would...
May 3, 2010 at 4:49 pm
Profiler!
Run a trace, filter on the database ID (SQL 2000 or less) or on the DB Name (SQL 2005 up).
Leo
May 3, 2010 at 4:17 pm
This is what I would call an Intra-table deadlock. Most people think of a deadlock as between two process accessing two tables (inter-table) in different orders, but here the two...
May 3, 2010 at 4:12 pm
I used these notes. Very comprehensive with good screen shots.
http://www.mssqltips.com/tip.asp?tip=1687
http://www.mssqltips.com/tip.asp?tip=1698
http://www.mssqltips.com/tip.asp?tip=1709
http://www.mssqltips.com/tip.asp?tip=1721
Watch out for the bugs. And I strongly reccomend you Slipstream service pack...
November 18, 2009 at 7:31 pm
The simple answer is SP1...
My recommendation if you are building a new cluster is that you Slipstream the service pack. It will solve a lot of issues during the install,...
November 17, 2009 at 7:33 pm
Viewing 8 posts - 481 through 488 (of 488 total)