Table Corrupt: Extent is linked in more than one chain. Check the following allocation page and extent: alloc pg#=%Id extent#=%Id status=%d
DBCC CHECKALLOC checks the doubly-linked list used by SQL Server to associate extents with database objects. With this particular error one of the pointers on the extent# is pointing to another object chain. This error is often associated with errors 2541, 2543 and 1117.
Note If DBCC CHECKDB and DBCC CHECKALLOC show no other errors, the data for this object is recoverable either by performing a bcp out or a select into procedure.
Follow these steps:
If this error occurs on table data (the index ID=0), restore the database from a clean backup.