DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Confusion about Minimum Extent Clause

  1. #1
    Join Date
    Sep 2000
    Posts
    362
    Hi,
    I am a little confised about the minimum extent storage clause and how is it different than the initial extent clause.

    For example
    ALTER TABLESPACE SYSTEM
    DEFAULT STORAGE ( INITIAL 100M NEXT 1MB MINEXTENTS 1 MAXEXTENTS UNLIMITED PCTINCREASE 0);
    ALTER TABLESPACE SYSTEM
    MINIMUM EXTENT 64K;

    This statement is giving me an error
    ORA-02143: invalid STORAGE option

    Please Suggest.

    Thanks
    Anurag
    Appreciation is a wonderful thing;
    It makes what is excellent in others belong to us as well.


  2. #2
    Join Date
    Mar 2001
    Posts
    314
    You have two SQL statements.

    Change the "MB" to "M" in "NEXT" and your 1st statement will work:

    ALTER TABLESPACE SYSTEM
    DEFAULT STORAGE ( INITIAL 100M NEXT 1M MINEXTENTS 1 MAXEXTENTS UNLIMITED PCTINCREASE 0)


    -amar


  3. #3
    Join Date
    Feb 2000
    Location
    Washington DC
    Posts
    1,843
    Originally posted by anuragmin
    Hi,
    I am a little confised about the minimum extent storage clause and how is it different than the initial extent clause.

    For example
    ALTER TABLESPACE SYSTEM
    DEFAULT STORAGE ( INITIAL 100M NEXT 1MB MINEXTENTS 1 MAXEXTENTS UNLIMITED PCTINCREASE 0);
    ALTER TABLESPACE SYSTEM
    MINIMUM EXTENT 64K;

    This statement is giving me an error
    ORA-02143: invalid STORAGE option

    Please Suggest.

    Thanks
    Anurag
    INITIAL & NEXT refers to the SIZE of extent ( say in so and so KB/MB)
    MINEXTENTS & MAXEXTENTS count of the extents( or say 2, 10 or n)
    Reddy,Sam

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width