1.

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 INDEXINCLUDING week_noOVERFLOWPARTITION BY HASH (week_no)PARTITIONS 16STORE IN (ts1, ts2, ts3, ts4)OVERFLOW STORE IN (ts3, ts6, ts9);

A. List
B. Hash
C. Range
D. None of the above
Answer» C. Range


Discussion

No Comment Found

Related MCQs