exam questions

Exam 1z0-070 All Questions

View all questions & answers for the 1z0-070 exam

Exam 1z0-070 topic 1 question 67 discussion

Actual exam question from Oracle's 1z0-070
Question #: 67
Topic #: 1
[All 1z0-070 Questions]

You are evaluating the performance of a SQL statement that accesses a very large table.
You run this query:

Identify two reasons why the "physical read total bytes" statistic is greater than the "cell physical IO bytes eligible for predicate offload" statistic.

  • 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.
  • 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.
  • 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.
  • D. The table is an index clustered table, causing "cell single block physical reads" to be requested by the database instance, resulting in additional I/O.
  • 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.
Show Suggested Answer Hide Answer
Suggested Answer: BE 🗳️
Note:
✑ physical read total bytes: the size of the segment to read is known by the database, and must be read entirely from the databases perspective.
✑ cell physical IO bytes eligible for predicate offload: this statistic shows the amount of data which the cell server is able to process on behalf of the database, instead of the database processing and the cell server just delivering blocks.
✑ Cell physical IO bytes eligible for predicate offload --- This number should be high
✑ The higher the number more MB/GB is filtered out at the cell level itself rather sending it to the buffer cache to filter the rows.
✑ In this case, all bytes are processed on the cellserver (cell physical IO bytes eligible for predicate offload=physical read total bytes)
✑ Cell Offloading:-
The storage cells are intelligent enough to process some workload inside them, saving the database nodes from that work. This process is referred to as cell offloading.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Currently there are no comments in this discussion, be the first to comment!
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...