Hello ,
When I ran DBCC CHECKDB on one of my databases, I noticed few objects being corrupt.
Msg 2533, Level 16, State 1, Line 1
Table error: page (1:915964) allocated to object ID 1105439012, index ID 1, partition ID 72057594129612800, alloc unit ID 72057594152419328 (type LOB data) was not seen. The page may be invalid or may have an incorrect alloc unit ID in its header.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 1105439012, index ID 1, partition ID 72057594129612800, alloc unit ID 72057594152419328 (type LOB data). The off-row data node at page (1:915964), slot 0, text ID 1910439936 is referenced by page (1:914286), slot 0, but was not seen in
the scan.
Msg 2533, Level 16, State 1, Line 1
Table error: page (1:915966) allocated to object ID 1105439012, index ID 1, partition ID 72057594129612800, alloc unit ID 72057594152419328 (type LOB data) was not seen. The page may be invalid or may have an incorrect alloc unit ID in its header.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 1105439012, index ID 1, partition ID 72057594129612800, alloc unit ID 72057594152419328 (type LOB data). The off-row data node at page (1:915966), slot 0, text ID 1910439936 is referenced by page (1:914286), slot 0, but was not seen in
the scan.
Msg 2533, Level 16, State 1, Line 1
Table error: page (1:915969) allocated to object ID 1105439012, index ID 1, partition ID 72057594129612800, alloc unit ID 72057594152419328 (type LOB data) was not seen. The page may be invalid or may have an incorrect alloc unit ID in its header.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 1105439012, index ID 1, partition ID 72057594129612800, alloc unit ID 72057594152419328 (type LOB data). The off-row data node at page (1:915969), slot 0, text ID 1910439936 is referenced by page (1:914286), slot 0, but was not seen in
the scan.
Whats the best recommended practice to rectify these problems?. I would minimize the data loss as much as possible. I could use REPAIR_ALLOW_DATA_LOSS to repair but worried about the dataloss. Trying to figure out any other better alternate approach available?.
I90Runner