[Msg]: Re: DBCC Errors (8/24/2004)
I'm not sure that you can, but you can try to issue DBCC Page
(DBID,1,32589,0). You have to replace DBID with the database's ID and also
to run DBCC traceon (3604) in order to view the results in ...
[Msg]: RE: DBCC Errors (8/24/2004)
I had this happen on a SQL 7.0 server. Although my next step was to try
and drop and re-create all the index's or just reindex the db. Before I
did that though I upgraded to SQL 2000 and it disapp...
[Msg]: RE: DBCC Errors (8/24/2004)
I've tried both without success. Here is the DBCC output:
Server: Msg 8909, Level 16, State 1, Line 1
Table error: Object ID 0, index ID 0, page ID (1:32589). The PageId in
the page header = ...
[Msg]: RE: DBCC Errors (8/24/2004)
How do I know what index it is? Here is my output from DBCC:
Server: Msg 8909, Level 16, State 1, Line 1
Table error: Object ID 0, index ID 0, page ID (1:32589). The PageId in
the page he...
[Msg]: DBCC Errors Continued (8/26/2004)
Hello, all. I'm still getting the following errors when running the
DBCC command with the 'REPAIR_ALLOW_DATA_LOSS' option. I've run it a
few times consecutively to see if it would fix my problem.
...
[Msg]: RE: DBCC Errors Continued (8/26/2004)
The (ID 299148111) is the Table's object_id so select
object_name('299148111') will give you the name of the table. The
index name is already in the message and so is the database name. From
th...
[Msg]: RE: DBCC Errors Continued (8/27/2004)
>I'm not sure what the error is or how to go about fixing this. If it is
>an index, how do I know what index it is to drop/re-create?
Index id > 2 and
Sänt av: bounce-sql2k-6393394@l...
[Msg]: [sswug:sql2k] Errors during DBCC CheckDb (9/25/2002)
Hello Every one
Could any one throw some light on the result set that I receive when I
carried out dbcc check db (in Query Analyser) on two databases
What do you suggest should be the best cour...
SQL Server 2005 DBCC Optimization Tips (Part 2) (6/24/2009)
SQL Server 2005 DBCC Optimization Tips (Part 2)
Consider using DBCC CHECKCATALOG command instead of DBCC CHECKDB command if
you need to check for catalog consistency within the specified da...
SQL Server 2005 DBCC Optimization Tips (Part 1) (6/17/2009)
SQL Server 2005 DBCC Optimization Tips (Part 1)
Consider using DBCC CHECKALLOC command instead of DBCC CHECKDB command if
you need to check the consistency of disk space allocation structur...
Useful SQL Server 2005 trace flags (2/15/2006)
Useful SQL Server 2005 trace flags by Alexander Chigrik
Introduction
Trace flags are used to temporarily set specific server characteristics or to switch off a particular behavior. You ca...