Hash method used to partition index-organized table - Oracle Indexes and Partitioned Tables
Q. In the following example which method is used to partition the index-organized table, sales?
CREATE TABLE sales(acct_no NUMBER(5),
acct_name CHAR(30),
amount_of_sale NUMBER(6),
week_no INTEGER,
sale_details VARCHAR2(1000),
PRIMARY KEY (acct_no, acct_name, week_no))
ORGANIZATION INDEX
INCLUDING week_no
OVERFLOW
PARTITION BY HASH (week_no)
PARTITIONS 16
STORE IN (ts1, ts2, ts3, ts4)
OVERFLOW STORE IN (ts3, ts6, ts9);
- Published on 30 Jul 15a. List
b. Hash
c. Range
d. None of the above
ANSWER: Hash