• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/6

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

6 Cards in this Set

  • Front
  • Back
Advantages of the Database Viewpoint unchanged
•Competitor: “Exadata is still Oracle!”
•Right – that is actually a good thing because:
•No change is needed for the Database Design
•No change is needed for the Application Code
•Migration to Exadata is relatively easy therefore
•DBA knowledge remains valid
What is the Exadata Smart Scan Idea
• “The fastest way of doing something is not to do it”
• Do not deliver the whole Data Volume up to the DB Layer!
• Instead, filter resp. project already on the Storage Layer!
• We want DB Intelligence built into the Storage Layer ...
Smart Scan, what is predicate filtering?
– Only the requested rows are returned to the database server
rather than all the rows in a table.
Smart Scan, what is column filtering
– Only the requested columns are returned to the database server rather than all the columns in a table.
Smart Scan... Query Example
Example:

SQL> SELECT col1,col2 FROM t WHERE condition;
Smart Scan Prerequisites
• Smart Scan is only possible for Full Table Scans or Full
Index Scans.
• Smart Scan can only be used for Direct-Path Reads:
• Direct-path reads are automatically used for parallel queries.
• Direct-path reads may also be used for serial queries.