Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Partitioning
Conrad
I've always stored each partition in a separate tablespace. Make each tablespace LMT with uniform extents. But if you want, you can use the syntax:
partition by range ( parm1, periodenddate )
(
partition sum_fy_01 values less than ('FY', to_date('01011999','mmddyyyy'))
tablespace data_fy_01
storage ( ),
partition sum_fy_02 values less than ('FY', to_date('01012000','mmddyyyy'))
tablespace data_fy_02
storage ( ),
Dennis Williams
DBA, 40%OCP, 100% DBA
Lifetouch, Inc.
dwilliams_at_lifetouch.com
-----Original Message-----
Sent: Wednesday, February 26, 2003 3:44 PM
To: Multiple recipients of list ORACLE-L
If you have a table partitioned, can you specify the storage size of each partition in that tables
I looked at dba_tab_partitions and dba_segments views. Although the show me storage information, I am unable to create a table where I can specify the storage size for each partition.
Am I doing something wrong Or you cannot specify a storage size for partitions.
Please help..
Thanks
Conrad...
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Conrad Meertins
INET: cmeertins_at_pinnacle-data.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Feb 26 2003 - 17:09:10 CST