Chapter 11: Database Performance Tuning and Query Optimization
32. A system table space, a user data table space, an index table space, and a temporary table space are examples of
_____.
a. procedure caches b. file groups
c. data caches d. operation modes
33. The data cache is where the data read from the database data files are stored the data have been read
or the data are written to the database data files.
a. after; before b. after; after
c. before; before d. before; after
34. To work with data, a DBMS must retrieve the data from and place them in .
a. data files; procedure cache b. RAM; data cache
c. permanent storage; RAM d. temporary files; procedure cache
35. The data cache or is a shared, reserved memory area that stores the most recently accessed data blocks
in RAM.
a. buffer cache b. procedure cache
c. SQL cache d. permanent storage
36. The is a shared, reserved memory area that stores the most recently executed SQL statements or
PL/SQL procedures, including triggers and functions.
a. buffer cache b. procedure cache
c. data cache d. permanent storage
37. To generate database object statistics manually, following syntax should be used in Oracle: .
a. ANALYZE <TABLE/INDEX> object_name;
b. CREATE <TABLE/INDEX> object_name;
c. ANALYZE <TABLE/INDEX> object_name COMPUTE STATISTICS;
d. CREATE <TABLE/INDEX> object_name COMPUTE STATISTICS;
38. The process analyzes SQL queries and finds the most efficient way to access data.
a. optimizer b. scheduler
c. listener d. user