Page 1 of 1

You are evaluating the performance of a SQL statement that accesses a very large table, and have run the following query

Posted: Wed Jun 07, 2023 6:11 am
by answerhappygod
You are evaluating the performance of a SQL statement that accesses a very large table, and have run the following query producing the output shown:For which two reasons would the; physical read total bytes statistic be greater than the cell physical IO bytes eligible for predicate offload statistic?
You Are Evaluat 1
You Are Evaluat 1 (211.44 KiB) Viewed 142 times
A. There is an index on the column used in the where clause, causing cell multiblock physical reads to be requested by the database instance, resulting in additional I/O for blocks in the cells.
B. The table is an IOT and has an overflow segment, causing cell multiblock physical reads to be requested by the database instance, resulting in additional I/O for block in the cells.
C. There is an uncommitted transaction that has modified some of the table blocks, causing some cell single block physical reads to be requested by the database instance, resulting in additional I/O for block in the cells.
D. The table is an indexed clustered table, causing cell single block physical reads to be requested by the database instance, resulting in additional I/O for blocks in the cells. E. There are migrated rows in the table, causing some cell single block physical reads to be requested by the database instance, resulting in additional I/O for blocks in the cells.