nerdexam
Oracle

1Z0-064 · Question #70

Your database supports an OLTP system. Examine the parameter values configured in your database: sga_max_size = 480M sga_target = 480M pga_aggregate_target = 160M The CUSTOMERS table contains 8,000…

The correct answer is A. creating a bitmap index on the COUNTRY_ID column D. creating a histogram on the COUNTRY_ID column. See the full explanation below for the reasoning.

Question

Your database supports an OLTP system. Examine the parameter values configured in your database:

sga_max_size = 480M sga_target = 480M pga_aggregate_target = 160M The CUSTOMERS table contains 8,000 rows. The CUST_ID column is the primary key and the COUNTRY_ID column contains only three possible values: 1111, 2222, and 3333. You execute the commands:

SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS(SH',CUSTOMERS'); PL/SQL procedure successfully completed. SQL> CREATE INDEX COUNTRY_IDX ON CUSTOMERS (COUNTRY_ID); Index created. You then perform a series of INSERT, UPDATE, and DELETE operations on the table. View the Exhibit to examine the query and its execution plan. Which two options can improve the performance of the query without significantly slowing down the DML operations? (Choose two.)

Exhibit

1Z0-064 question #70 exhibit

Options

  • Acreating a bitmap index on the COUNTRY_ID column
  • Bregathering statistics on the CUSTOMERS table
  • Cgathering statistics on the COUNTRY_IDX index
  • Dcreating a histogram on the COUNTRY_ID column
  • Eincreasing the size of the PGA
  • Fcreating an SQL profile
  • Gcreating a KEEP cache

How the community answered

(27 responses)
  • A
    85% (23)
  • B
    7% (2)
  • F
    4% (1)
  • G
    4% (1)

Community Discussion

No community discussion yet for this question.

Full 1Z0-064 Practice