The naming of these two pending events is rather confusing. Both of these mean I / O bottlenecks: db file scattered read usually comes from multi-block reads, which means a full table scan, while db file sequential read usually comes from single-block reads, which means indexed reads.
There are various theories about why Oracle engineers gave these events such explicitly misleading names. I heartily recommend that you read Eric Emric's essay on the subject. Why do vague thoughts about reading Oracle?
Regarding the interpretation of data, an indexed read is at least two logical readings: an index search, followed by a search for the row of the table indicated in the table. Things like wrapped lines can increase the number of reads. Thus, reading a large number of rows through an index is an expensive operation. While a full table scan can simply line up, using multi-block reads: it extends multiple rows for a single logical read. This is why a full table scan is usually more efficient for even relatively small percentages of the total row table.
source share