Click here to Skip to main content
16,021,112 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
After executing sysntax,
SQL
DBCC CHECKDB (dbname);
GO


i get list of errors,

Msg 8913, Level 16, State 4, Line 1
Extent (1:566136) is allocated to 'dbo.tablename' and at least one other object.
CHECKDB found 17 allocation errors and 0 consistency errors in table 'tablename' (object ID 1244687632).

can you explain what it is and what is solution.
thank you.
Posted

try to verify records in your table or use
DBCC CHECKDB (yourDB, REPAIR_FAST)
 
Share this answer
 
try to verify records in your table or use
DBCC CHECKDB (yourDB, REPAIR_FAST)
 
Share this answer
 
The same object name seems to have been used in two places.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900