Ran the DBCC checkdb on Database
AFW05 and received the following error. The database was a sql 2000 version that was migrated over to SQL 2005 server.
CHECKDB found 0 allocation errors and 1 consistency errors in database 'AFW05'.
DBCC results for 'BPWorksheetAccountXRef'.
Msg 2508, Level 16, State 3, Line 2
The In-row data RSVD page count for object "BPWorksheetAccountXRef", index ID 0, partition ID 17963418714112, alloc unit ID 17963418714112 (type In-row data) is incorrect. Run DBCC UPDATEUSAGE.
There are 5296 rows in 17 pages for object "BPWorksheetAccountXRef".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'BPWorksheetAccountXRef' (object ID 274100017).
Should I use
DBCC udateusage (AFW05)
go
or should I use the additional switches. If I need the additional switches, what would the command be for correct syntax?
JoppaPaul