I am running dbcc checkdb and got following message for 2 tables:
Checking mytab1: Logical pagesize is 2048 bytes ---long time
Checking mytab1: Logical pagesize is 2048 bytes
The total number of data pages in this table is 390.
The total number of pages which could be garbage collected to free up some space is 336.
The total number of deleted rows in the table is 3.
The total number of pages with more than 50 percent insert free space is 6.
Table has 2580 data rows.
Checking mytab2: Logical pagesize is 2048 bytes
The total number of data pages in this table is 82265.
The total number of pages which could be garbage collected to free up some space is 5431.
The total number of deleted rows in the table is 763.
They are small table, but dbcc took long time on it. Does it mean something wrong with these 2 tables?
How to figure out and resolve the problem if any?