If you have isolated the select statement that's taking all the time then just use showplan to see how the number of logical reads alters when using your new query:
Code:
set showplan on
Your select stement
set showplan off
Alternatively just run a large select to clear out the cache before running your query:
Code:
select * from BigTable order by some_field
Your select statement