Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to add partition in the existing table?

702244May 19 2009 — edited Nov 14 2011
Hi All,

i have one existing table " TMP_CST_BLDG_COSTS_FCT" in which two partition already created. i need to add one more partition "TMP_CST_BLDG_COSTS_FCT_CGICS" based on value(10).

PARTITION BY LIST (CSBCF_CSCSD_KEY)
(
PARTITION TMP_CST_BLDG_COSTS_FCT_ESSBASE VALUES (9)
LOGGING
NOCOMPRESS
TABLESPACE CRSDW
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
MINEXTENTS 1
MAXEXTENTS 2147483645
BUFFER_POOL DEFAULT
),
PARTITION TMP_CST_BLDG_COSTS_FCT_OTHER VALUES (DEFAULT)
LOGGING
NOCOMPRESS
TABLESPACE CRSDW
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
MINEXTENTS 1
MAXEXTENTS 2147483645
BUFFER_POOL DEFAULT
)
)

When i am adding one more partition it gives error : ora-14323 : can not add partition when DEFAULT partition exists. please guide me how to add partition in table.

Thanks & regards
shyam
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 12 2011
Added on May 19 2009
9 comments
4,209 views