Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Table partion storage

Re: Table partion storage

From: Ganesh Raja <ganesh.raja_at_gmail.com>
Date: Wed, 20 Sep 2006 17:40:34 +0200
Message-ID: <f754edf0609200840u1bcc30e7g5db5bc14f6972c0e@mail.gmail.com>


What Kind of a TBS is this ???

On 9/20/06, Alessandro Vercelli <alever_at_libero.it> wrote:
>
> Hi all,
> I needed to change storage parameters for a table partion:
>
> SQL> select table_name,partition_name,INITIAL_EXTENT,NEXT_EXTENT,
> 2 PCT_INCREASE from user_tab_partitions where
> 3 partition_name='TEST_PART_01';
>
> TABLE_NAME PARTITION_NAME INITIAL_EXTENT NEXT_EXTENT PCT_INCREASE
> -------------- --------------- -------------- ----------- ------------
> TABLE_01 TEST_PART_01 1048576 1048576 0
>
>
> SQL> alter table TABLE_01 drop partition TEST_PART_01;
>
> Table altered.
>
> SQL> ALTER TABLE TABLE_01 ADD PARTITION TEST_PART_01 values ('TEST')
> 2 tablespace TEST_TBS storage (INITIAL 100M NEXT 100M PCTINCREASE 0);
>
> Table altered.
>
> SQL> select table_name,partition_name,INITIAL_EXTENT,NEXT_EXTENT,
> 2 PCT_INCREASE from user_tab_partitions where
> 3 partition_name='TEST_PART_01';
>
>
> TABLE_NAME PARTITION_NAME INITIAL_EXTENT NEXT_EXTENT PCT_INCREASE
> -------------- --------------- -------------- ----------- ------------
> TABLE_01 TEST_PART_01 104857600 1048576 0
>
>
> Can you help me to understand why NEX_EXTENT did not change?
>
> Thanks,
>
> Alessandro
>
>
> ------------------------------------------------------
> Tutti i libri che vuoi, li trovi su BOL. Ordini on line e paghi alla
> consegna.
> http://click.libero.it/bol
>
>
> --
> http://www.freelists.org/webpage/oracle-l
>
>
>

-- 
-----------------------------------------------------------
http://iyertalks.blogspot.com/

--
http://www.freelists.org/webpage/oracle-l
Received on Wed Sep 20 2006 - 10:40:34 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US