Frage

Please explain the meaning and significance of the column 'LAST_CR_BUFFER_GETS', shown in the Oracle SQL Developer Autotrace view.

War es hilfreich?

Lösung

As answered in the comments by @a_horse_with_no_name, per this Oracle doc it is:

Number of buffers retrieved in consistent mode

The word 'consistent' is used as a technical term, contrasted with 'current'; "Buffers are usually retrieved in consistent mode for queries." and "Buffers are retrieved in current mode for statements such as INSERT, UPDATE, and DELETE." So this information tells you how much data your SQL caused Oracle to move around for each type of work.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top