Hello,
Try doing a select using another index if the object has any indexes.
select * from yourtable (index indexname)
select * from yourtable (index indexname)
or try writing "where clauses" that avoid the page.
select * from yourtable (index indexname) where col_a<abc or col_a>xyz
There are also dbcc print page command...
You would want to examine the prior page in a table to see the next page pointer.
Cory Sane
If I answered your question correctly, please identify the reply as correct or helpful.