Solution
The following script will find SQL with many disk reads:
-- ------------------------
-- Find SQL Statements that
-- require a lot of disk
-- reads.
-- ------------------------
SELECT *
FROM v$sql
WHERE 1=1
AND disk_reads / (0.001 + executions) > 10000
/