if i want to shrink one mdf file:
dbcc shrinkfile (N'xy');
go
i got error:
DBCC SHRINKFILE: Heap page 23:878847 could not be moved. The statement has been terminated. DBCC execution completed. If DBCC printed error messages, contact your system administrator. Msg 7105, Level 22, State 9, Line 1 The Database ID 20, Page (23:200140), slot 1 for LOB data type node does not exist. This is usually caused by transactions that can read uncommitted data on a data page. Run DBCC CHECKTABLE.
But if i run dbcc checkdb or checktable, it doesnt show me any error. Where can be problem? What should i do? Thank you.