• Logical reads are reads from memory whereas physical reads are reads from disk.

    If the queries are not waiting on anything then the next thing I would look at is the query execution plans. The queries are probably performing scans on large tables which would account for the high number of reads that you are seeing.

    Have a look at the plans and see if appropriate indexes can be created to bring down the number of reads.

    Andrew