PARTITION BY LIST "catch-all" partition
Posted by:
Egor Ivkin
Date: January 20, 2010 03:25AM
Will there be a "catch-all" partition in PARTITION BY LIST?
Exemple from Oracle:
CREATE TABLE sales_list
(salesman_id NUMBER(5),
salesman_name VARCHAR2(30),
sales_state VARCHAR2(20),
sales_amount NUMBER(10),
sales_date DATE)
PARTITION BY LIST(sales_state)
(
PARTITION sales_west VALUES('California', 'Hawaii'),
PARTITION sales_east VALUES ('New York', 'Virginia', 'Florida'),
PARTITION sales_central VALUES('Texas', 'Illinois'),
PARTITION sales_other VALUES(DEFAULT)
);
Edited 1 time(s). Last edit at 01/21/2010 12:30AM by Egor Ivkin.
Subject
Views
Written By
Posted
PARTITION BY LIST "catch-all" partition
5340
January 20, 2010 03:25AM
2353
January 22, 2010 11:05PM
2300
January 23, 2010 12:30AM
2333
January 23, 2010 03:55AM
2255
January 23, 2010 08:20AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.