Re: ORA-14316 table is not partitioned by List method
- From: "Jonathan Lewis" <jonathan@xxxxxxxxxxxxxxxxxx>
- Date: Fri, 30 Mar 2007 14:37:29 +0100
"Andrea" <netsecurity@xxxxxxxxxx> wrote in message
news:1175258561.593103.4500@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
I don't able to drop value for table partitioned:
ALTER TABLE HA_EVENT_P MODIFY PARTITION ENTRO_MARZO02 DROP VALUES
(TO_DATE('01-0-1/2005','DD-MM-YYYY'));
ORA-14316 table is not partitioned by List method
why??
SELECT HIGH_VALUE FROM USER_TAB_PARTITIONS;
HIGH_VALUE
--------------------------------------------------------------------------------
TO_DATE(' 2005-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS',
'NLS_CALENDAR=GREGORIAN'
MAXVALUE
:(
It looks like the table is range partitioned.
Try the following to check the DDL for
the table:
set long 20000
select dbms_metadata.get_ddl('TABLE','HA_EVENT_P','TEST_USER') from dual
Assumes you have execute privilege on dbms_metadata
and suitable access to know about table HA_EVENT_P
owned by user TEST_USER.
--
Regards
Jonathan Lewis
http://jonathanlewis.wordpress.com
Author: Cost Based Oracle: Fundamentals
http://www.jlcomp.demon.co.uk/cbo_book/ind_book.html
The Co-operative Oracle Users' FAQ
http://www.jlcomp.demon.co.uk/faq/ind_faq.html
.
- Follow-Ups:
- References:
- ORA-14316 table is not partitioned by List method
- From: Andrea
- ORA-14316 table is not partitioned by List method
- Prev by Date: Re: Big table
- Next by Date: Re: Big table
- Previous by thread: ORA-14316 table is not partitioned by List method
- Next by thread: Re: ORA-14316 table is not partitioned by List method
- Index(es):
Relevant Pages
|