How many extents allocated when table created?

I am using Oracle 9,
is the number going to be what we specified by minextents?
thanks

Srinivas,
You said,
If its AUTOALLOCATE , Oracle starts with 1 extent of 64KB , then 128KB as the first extent becomes full, then 256KB so on....
Can you help me in understanding this statement?I don't think that its true. See here,
SQL> select * from V$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
PL/SQL Release 10.2.0.1.0 - Production
CORE    10.2.0.1.0      Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
SQL> drop tablespace test including contents and tablespaces;
drop tablespace test including contents and tablespaces
ERROR at line 1:
ORA-00905: missing keyword
SQL> drop tablespace test including contents and datafiles;
Tablespace dropped.
SQL> create tablespace test datafile 'd:\test.dbf' size 100m extent
ocal autoallocate ;
Tablespace created.
SQL> select tablespace_name,initial_extent,next_extent from dba_tab
  2  where tablespace_name='TEST'/
  3
SQL> select tablespace_name,initial_extent,next_extent from dba_tab
  2  where tablespace_name='TEST'
  3  /
TABLESPACE_NAME                INITIAL_EXTENT NEXT_EXTENT
TEST                                    65536
SQL> --Creating a table inside in this tablespace
SQL> create table t as select * from dba_objects;
Table created.
SQL> alter table t move tablespace test;
Table altered.
SQL> select tablespace_name, extent_id, bytes/1024, blocks
  2  from user_extents
  3  where segment_name = 'T';
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                    0         64          8
TEST                                    1         64          8
TEST                                    2         64          8
TEST                                    3         64          8
TEST                                    4         64          8
TEST                                    5         64          8
TEST                                    6         64          8
TEST                                    7         64          8
TEST                                    8         64          8
TEST                                    9         64          8
TEST                                   10         64          8
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                   11         64          8
TEST                                   12         64          8
TEST                                   13         64          8
TEST                                   14         64          8
TEST                                   15         64          8
TEST                                   16       1024        128
TEST                                   17       1024        128
TEST                                   18       1024        128
TEST                                   19       1024        128
TEST                                   20       1024        128
21 rows selected.
SQL>
SQL> insert into t select * from t;
50356 rows created.
SQL> /
100712 rows created.
SQL> /
201424 rows created.
SQL> /
402848 rows created.
SQL> commit;
Commit complete.
SQL> analyze table t compute statistics;
Table analyzed.
SQL> select tablespace_name, extent_id, bytes/1024, blocks
  2  from user_extents
  3  where segment_name = 'T';
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                    0         64          8
TEST                                    1         64          8
TEST                                    2         64          8
TEST                                    3         64          8
TEST                                    4         64          8
TEST                                    5         64          8
TEST                                    6         64          8
TEST                                    7         64          8
TEST                                    8         64          8
TEST                                    9         64          8
TEST                                   10         64          8
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                   11         64          8
TEST                                   12         64          8
TEST                                   13         64          8
TEST                                   14         64          8
TEST                                   15         64          8
TEST                                   16       1024        128
TEST                                   17       1024        128
TEST                                   18       1024        128
TEST                                   19       1024        128
TEST                                   20       1024        128
TEST                                   21       1024        128
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                   22       1024        128
TEST                                   23       1024        128
TEST                                   24       1024        128
TEST                                   25       1024        128
TEST                                   26       1024        128
TEST                                   27       1024        128
TEST                                   28       1024        128
TEST                                   29       1024        128
TEST                                   30       1024        128
TEST                                   31       1024        128
TEST                                   32       1024        128
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                   33       1024        128
TEST                                   34       1024        128
TEST                                   35       1024        128
TEST                                   36       1024        128
TEST                                   37       1024        128
TEST                                   38       1024        128
TEST                                   39       1024        128
TEST                                   40       1024        128
TEST                                   41       1024        128
TEST                                   42       1024        128
TEST                                   43       1024        128
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                   44       1024        128
TEST                                   45       1024        128
TEST                                   46       1024        128
TEST                                   47       1024        128
TEST                                   48       1024        128
TEST                                   49       1024        128
TEST                                   50       1024        128
TEST                                   51       1024        128
TEST                                   52       1024        128
TEST                                   53       1024        128
TEST                                   54       1024        128
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                   55       1024        128
TEST                                   56       1024        128
TEST                                   57       1024        128
TEST                                   58       1024        128
TEST                                   59       1024        128
TEST                                   60       1024        128
TEST                                   61       1024        128
TEST                                   62       1024        128
TEST                                   63       1024        128
TEST                                   64       1024        128
TEST                                   65       1024        128
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                   66       1024        128
TEST                                   67       1024        128
TEST                                   68       1024        128
TEST                                   69       1024        128
TEST                                   70       1024        128
TEST                                   71       1024        128
TEST                                   72       1024        128
TEST                                   73       1024        128
TEST                                   74       1024        128
TEST                                   75       1024        128
TEST                                   76       1024        128
TABLESPACE_NAME                 EXTENT_ID BYTES/1024     BLOCKS
TEST                                   77       1024        128
TEST                                   78       1024        128
TEST                                   79       8192       1024
TEST                                   80       8192       1024
TEST                                   81       8192       1024
82 rows selected.
SQL>Its not working in the way youmentioned. The extents are of 65kb till 16 extents than it changes to 1024kb untill 78 and then 8192 kb. Is it something that I am missing?
Aman....

Similar Messages

  • How many secondary index you can create on table

    hi,
    how many secondary index you can create on table?
    thanks,
    raj

    Hi,
    Maximun number of indexes for a table can be 9.
    check this FAQ
    http://www.sap-img.com/abap/important-abap-faq.htm
    Regards,
    Vinodh

  • At max how many logical columns can be created in RPD

    Hi All,
    At max how many logical columns can be created in RPD. I have a requirement of creating 200 columns. Will there be any problem .
    Is there any predefind number of columns for RPD creation??
    Please help ..

    Hi Annapurna,
    There's no limit that I'm aware of or which is mentioned anywhere. Just as an example: I have a logical fact table with around 750 logical columns (>500 original measures & 250 derived measures). No issue whatsoever. Opening the presentation table through answers takes about 2-3 seconds (the NQSQL command has a lot to retrieve), but that's about it.
    Cheers,
    C.

  • How many server nodes can you create per instance

    Hi,
    Very often the bottle neck in a java installation (NW04s) is the heap size. In order to increase the heap you simple create new server nodes.
    My question is:
    How many server nodes can you create per instance?
    Is there an upper limit before you have to create a new dialog instance (with a web dispatcher)?
    I can imagine that when you create a new server node you also have to increase the heap and max therad of the dispatcher. Is there any upper limit of the heap size of the dispatcher node ?

    Rasmus , I think you laid out a real good scenario for every one to contribute
    I may be very late but just updating this forum for benefit of everyone who visits this.
    In addition to all the points above one must also consider following things if one decides to add more server nodes to one dispatcher
    1.Garbage collection time
    2.Dispatcher would keep on sending request to node S2 if it is not completely bad and there by impacting all the servernode       so  you might end up restartiing the entire cluster.
    3,Debugging also becomes diffculy as you are not sure on which server node you are within the cluster.
    4.If you have something like F5 which does hear beat monitoring even one server node goes bad F5 will not report anything.
    So in my view one server node per dispatcher is an ideal configuration.
    Over All Dispatcher does not consume more resouces (Disk Space + CPU + memory ) at the same time it will give you maintenance flexibility.
    Nothing is right or wrong ,all these things are based on how your infrastructure set up is.
    Cheers !!
    Manish Jain

  • How can I check how many times or when an app has been re-downloaded on my iphone

    How can I check how many times or when an app has been re-downloaded on my iphone. I know how to check purchases but I am looking for how to check when an app had been re-downloaded on my device whether it's through my device or Apple ID

    You mention "lack of control" several times.  The control is there - you control the Apple ID and password that owns the app.  No other Apple ID can use the app.  You have not shared your Apple ID or password with anyone, so you and only you own the app.
    Therefore, the number of times the app is downloaded or re-downloaded is completely irrelevant.  You might, for example, decide to purchase a new iPhone or iPad and download the app there.  Or the app developer may issue a new version which you download.  None of this matters regarding your "control" of the app.  All that matters is that you own it and nobody else can use it.

  • I created an image in Photoshop and saved it as the PSD file. Now when I try and open it it says it is not compatible with my version. How could this be when I created it in this version?

    I created an image in Photoshop and saved it as the PSD file. Now when I try and open it it says it is not compatible with my version. How could this be when I created it in this version?

    That depends on why it won't open.  Most of the time it means the file is corrupted and unlikely to be recovered. If you saved it right after adding or copying a LOT of layers - then it might just be the layer limit and we can attempt to recover it.

  • How many softwares are there to create a setup file for java programs

    Hi, i am new to java
    I want to know how many softwares are there to create a setup file for java programs.
    I know one software i.e java launcher to create a setup file.
    I want to know about any other softwares are available to create a setup file for java programs.
    I created a setup file for swings program in JCreator.
    And don't think that i am wastiing ur time with this question .
    Help me regarding this topic.
    Thanks in Advance

    superstar wrote:
    I want to know how many softwares are there to create a setup file for java programs.13, no wait, 42.
    I know one software i.e java launcher to create a setup file.You should clearly identify what you think you already know.
    I want to know about any other softwares are available to create a setup file for java programs.
    I created a setup file for swings program in JCreator.Is this the one you talked before, or is this different?
    And don't think that i am wasting ur time with this question .Why should I not think that?

  • By default how many plan types one can create in Hyperion planning applicat

    By default how many plan types one can create in Hyperion planning application?

    Hi,
    By Default,We can create 3 plan types in Hyperion planning application.

  • How many java String objects are created in string literal pool by executin

    How many java String objects are created in string literal pool by executing following five lines of code.
    String str = "Java";
    str = str.concat(" Beans ");
    str = str.trim();
    String str1 = "abc";
    String str2 = new String("abc").intern();
    Kindly explain thanks in advance
    Senthil

    virtuoso. wrote:
    jverd wrote:
    In Java all instances are kept on the heap. The "String literal pool" is no exception. It doesn't hold instances. It holds references to String objects on the heap.Um, no.
    The literal pool is part of the heap, and it holds String instances.
    [http://java.sun.com/docs/books/jvms/second_edition/html/Overview.doc.html#22972]
    [http://java.sun.com/docs/books/jvms/second_edition/html/ConstantPool.doc.html#67960]
    You're referring to the JVM. That's not Java.It's part of Java.
    There is nowhere in Java where it is correct to say "The string literal pool holds references, not String objects."

  • How many softMotion references can you create on an Interface Object

    I'm wondering how many softmotion references I can create on an interface object.  For example can I create a straight line move on an axis, keep that reference open then at the same time create another line move referece on a coordinate space that using that same axis?
    Can I have multiple line move references open at the same time on the same axis?
    Thanks,
    SteveA
    SteveA
    CLD
    FPGA/RT/PDA/TP/DSC

    Thanks Paul,
    I have noticed that the SoftMotion express vis open a reference on first call, but they never close the reference.  On my machine I will be doing regular coordinate moves and from time to time I will need to perform an Axis move.  Would it be better practice to close each reference after I perform the move?  How much overhead does it take to create a new reference?  The thought I had on keeping multiple reference open was to minimize the overhead in opening a reference.  Once my system gives a trigger to perform a move, I need it to be very responsive.
    Thanks,
    Steve
    SteveA
    CLD
    FPGA/RT/PDA/TP/DSC

  • How many physical standbys can be created in one data guard environment?

    Hi Experts,
    How many physical standbys can be created from primary in one data guard environment? Why LOG_ARCHIVE_CONFIG limits up to 9 unique database names? Thanks.

    Victor Jin-Oracle wrote:
    Hi Experts,
    How many physical standbys can be created from primary in one data guard environment? Why LOG_ARCHIVE_CONFIG limits up to 9 unique database names? Thanks.
    Post the source of your information abouit the limit of 9 names.
    Even the Oracle doc shows 1..30 names in the same provided although that doesn't necessarily indicate a limit.
    https://docs.oracle.com/database/121/REFRN/refrn10237.htm

  • How many view object instances can create from Single Entity ?

    Hi All,
    JDev Ver : 11.1.1.5
    I want to How Many view objects can i create from the single entitiy ?
    Is there any limit ?
    Thanks,
    Gopinath

    No, there is no limit

  • How many icloud account can we create with one ios device???

    how many icloud account can we create with one ios device???

    i need more then 1 account as i owe itunes some money and i cant access my app store so if i change my icloud account .....all my previous history wont be tracked

  • When archiving emails in airplane mode, is there a limit on how many will sync when back online?

    When using an iPad in airplane mode and going through your inbox archiving mail, is there limit on how many emails you can move before it will not sync back to the exchange server?
    In this case I have two iPads, both syncing with an office 365 server. I synced 3 emails on one iPad in airplane mode and this was fine. However, the other iPad had synced over 80 emails. The second iPad did not sync any of the changes once reconnected to the network.
    Is there a limit on how many will sync when back online? Or is something else the cause of this problem?

    I don't aware of such an limitation on Outlook side.
    The only limits that I know is that your mail service provider might restrict the number of messages sent per hour/day and the number of recipients per message.
    Aravindhan Battepati

  • How many enterprise projects we can create in a single project web app site in project server 2013 enterprise?

    I have MS SharePoint 2013 Enterprise and MS Project Server enterprise installed in the same server,
    I have created project web app site 
    can anyone tell me that how many enterprise projects I can create in a single Project web app site
    what is the recommended number of enterprise project per project web app

    As I remember each project site is a sub site in a project Web app site collection.  That means you can have a maximum of 250,000 project sites before you run out of space in the site collection.  That's the boundary for sub sites in a single
    site collection for SharePoint 2013.  Project server doesn't have a specific limit.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

Maybe you are looking for

  • Installing Photoshop 7 and MacBook Pro?

    I'm having difficulty in installing Photoshop 7 onto my MacBook Pro (OS X, version 10.8.2   Processor 2.5 GHz intel Core i5) I have this message appearing "You can't open the application "Install Adobe Photshop" because PowerPC applications are no lo

  • Is there a way to transfer Microsoft Office from my old one to the new one?

    I recently bought a new Mac Pro.  Is there a way to transfer Microsoft Office suite from my old one to the new one?

  • Auto Clear GRIR Account

    Hi Gurus- Client is using Moving Ave Price as their Inventory Valuation. They want to automate the clearing of their GRIR Account. If the variance is within 2% they want to post this to an Expense account. In MR11 the difference is being charged to t

  • Release strategy-- very very urgent

    hi, i have created the release strategy & its working properly in devolopment client. The entire thing is transported to quality client. But the characteristics values are not coming in the classification tab of release strategy. I have saved even th

  • KB3011780 returns "the update is not applicable to your computer"

    I was able to install KB3011780 to all Wind2K3 & Win2012 non-R2 DCs, except our only Win2012 R2 domain controller.  that server will not pick the KB from the WSUS server, from MS Updates online and when I try to install via WU Standalone I get: the u