Max Tablespace Size in 10.2.0.3

Hi,
Any idea how bigger a Tablespace can grow/created in 10g? I have a requirement to create 1.4TB of tablespace. I am pushing it back to break into chunks, but in worse case scenario I may have to create it!! So any suggestions will be honored.
Thanks
Daljinder Singh

In 10g you can use "bigfile" tablespaces, this is a new feature. They sit upon a single datafile that can be up to 32TB in size if you use 8KB data blocks.
With traditional tablespaces (smallfiles) each datafile can be up to 32GB and you can have up to 1,022 datafiles.
So I guess for you it is better to create the bigfile tablespace:
CREATE BIGFILE TABLESPACE order_history DATAFILE '.....DBF' SIZE 1.4T;
enrico

Similar Messages

  • Max Datafile Size Oracle 9i

    Hi There,
    We have multiple tablespaces in our database and the recently we got a message that the size of a particular tables has reached 97% and it needs to be increased.
    Now currently the size of that tablespace is 29GB and before increasing the size of this tablespace we would like to know if there is a limitation for an Oracle data file size or are there any performance issues or implications that we may potentially face with a single data file of 30GB in size.
    This is the biggest tablespace in our system other tablespaces are max 12 or 17 GB.
    I am not a DBA just working in the support role as a developer. Could you please provide some insight on above query.
    Many thanks in advance.
    Regards
    Sam

    Aman, Please go through below MOS notes.
    Oracle9i Database Limits [ID 217143.1]
    Database file size
    + Maximum
    Operating system dependent. Limited by maximum operating system file size;
    typically 222 or 4M blocks
    What is The Maximum Datafile Size Limit In Oracle Database 10gR2 [ID 804733.1]
    Maximum number of Database blocks allowed in a single datafile in 10gR2 are as follows:
    Small File Tablespace (Normal Tablespace) : 4194303 (2^22 -1)
    Big File Tablespace (New in 10gR2) : 4294967295 (2^32 -1)
    Max datafile size for SMALL FILE NORMAL TABLESPACE would be:
    Database Block Size     Maximum Datafile File Size
    2k     4194303 * 2k = 8 GB
    4k     4194303 * 4k = 16 GB
    8k     4194303 * 8k = 32 GB
    16k     4194303 * 16k = 64 GB
    32k     4194303 * 32k = 128 GB
    Max datafile size for BIG FILE TABLESPACE would be:
    Database Block Size     Maximum Datafile Size
    2k     4294967295 * 2k = 8 TB
    4k     4294967295 * 4k = 16 TB
    8k     4294967295 * 8k = 32 TB
    16k     4294967295 * 16k = 64 TB
    32k     4294967295 * 32k = 128 TB

  • Problem in tablespaces size

    hi gurus
    i installed ecc 6.0 with oracle 10g after installation i checked tablespaces but these are like this
    psapsr3 -80%(used)
    psapsr3700-99%(used)
    system-97%(used)
    sysaux-93%
    but according to threshold values max allowed upto 80% why it is showing above 95%
    what can i do for this. is there any problem in feature for this tablespaces.

    vasu,
    Have you run SGEN after installation? as it compile and regenerates all the screens & programs and occupies the most of the tablespace size.
    Your tablespace size is normal, just add datafiles.
    Regards,
    Rajesh

  • Reducing unused tablespace size

    Hi,
    i have oracle database 10g on linux.
    when i initially created tablespaces i allocated a huge amount of space, but when i checked the actual data size in eac tablespace, they are very small.
    and now i want to backup my tablespaces in a tape drive. but the size of all the tablespace is bigger then my tape.
    is there a way where i can reduce the size of my tablespaces. for example my "USERS" tablespace has only data occupying only 3 GB but i allocated about 10GB as the size for USERS tablespace.
    so how can i bring the size down to 5GB so i do need to backup unnecessary space on my tape.
    Thanks,
    Philip.

    Hi,
    First run below query and according query output you can reduce you tablespace size.
    ORA-03297: file contains used data beyond requested RESIZE value
    SQL> select bytes/1024 from dba_data_files where file_id = 6;
    BYTES/1024
    7168
    SQL> select sum(bytes/1024) from dba_segments where tablespace_name = 'EXAMPLE';
    SUM(BYTES/1024)
    5440
    SQL> alter database
    2 datafile 'c:\oracle\product\10.1.0\oradata\db02\example01.dbf' resize 5500k
    alter database
    ERROR at line 1:
    ORA-03297: file contains used data beyond requested RESIZE value
    According below query output you can reduce your tablespace size up to HWM.
    if you want to reset HWM you can use 1.export + import OR alter table + rebuild index.
    SQL> ed
    Wrote file afiedt.buf
    1 select
    2 a.file_name,
    3 a.bytes file_size_in_bytes,
    4 (c.block_id+(c.blocks-1)) * &_BLOCK_SIZE HWM_BYTES,
    5 a.bytes - ((c.block_id+(c.blocks-1)) * &_BLOCK_SIZE) SAVING
    6 from dba_data_files a,
    7 (select file_id,max(block_id) maximum
    8 from dba_extents
    9 group by file_id) b,
    10 dba_extents c
    11 where a.file_id = b.file_id
    12 and c.file_id = b.file_id
    13 and c.block_id = b.maximum
    14* and c.tablespace_name = 'EXAMPLE'
    SQL> /
    Enter value for blocksize: 8192
    old 4: (c.block_id+(c.blocks-1)) * &_BLOCK_SIZE HWM_BYTES,
    new 4: (c.block_id+(c.blocks-1)) * 8192 HWM_BYTES,
    Enter value for blocksize: 8192
    old 5: a.bytes - ((c.block_id+(c.blocks-1)) * &_BLOCK_SIZE) SAVING
    new 5: a.bytes - ((c.block_id+(c.blocks-1)) * 8192) SAVING
    FILE_NAME
    FILE_SIZE_IN_BYTES HWM_BYTES SAVING
    C:\ORACLE\PRODUCT\10.1.0\ORADATA\DB02\EXAMPLE01.DBF
    7340032 6356992 983040
    SQL> alter database
    2 datafile 'c:\oracle\product\10.1.0\oradata\db02\example01.dbf' resize 63569
    92;
    Database altered.regards
    Taj

  • How to get last time when tablespace size increase

    Hi all,
    I need last date and time when tablespace size was extended. Kindly tell me is there any query which can help me.
    Thanks

    possible if you've 10g database and holding license to use AWR.
    table name is dba_hist_tbspc_space_usage
    SELECT TO_CHAR (sp.begin_interval_time,'DD-MM-YYYY') days
    , ts.tsname
    , max(round((tsu.tablespace_size* dt.block_size )/(1024*1024),2) ) cur_size_MB
    , max(round((tsu.tablespace_usedsize* dt.block_size )/(1024*1024),2)) usedsize_MB
    FROM DBA_HIST_TBSPC_SPACE_USAGE tsu
    , DBA_HIST_TABLESPACE_STAT ts
    , DBA_HIST_SNAPSHOT sp
    , DBA_TABLESPACES dt
    WHERE tsu.tablespace_id= ts.ts#
    AND tsu.snap_id = sp.snap_id
    AND ts.tsname = dt.tablespace_name
    AND ts.tsname NOT IN ('SYSAUX','SYSTEM')
    GROUP BY TO_CHAR (sp.begin_interval_time,'DD-MM-YYYY'), ts.tsname
    ORDER BY ts.tsname, days;http://maxwellmiranda.wordpress.com/2011/03/22/segmenttablespace-growth-details-script/

  • Sophos AV max scanning size / timeout

    Hi,
    I haven't found any changeable settings for max. scanning size or scanning timeout on a S160 v7.1.3 with Sophos AV.
    In the GUI under "Security Services-->Anti-Maleware"  it shows  "Object Scanning Limits: Max. Object Size:  32 MB".
    I'm not able to change it. This parameter seems not to belong to the Sophos AV.
    I can change it only after enableing Webroot or McAfee first.
    The CLI has no commands for adjusting AV settings.
    How can I control the max. scanning size or scanning timeout with Sophos-AV?
    Has it fixed values for it?
    Does anyone have an idea, how it works?
    Kind regards,
    Manfred

    With administrator rights, the value should be editable.  The object size is applied to all scanners which have been licensed and enabled on the appliance.
    ~Tim

  • Amount of temporary tablespace size used for index rebuild

    Hi All,
    I want to know approximate amount of temporary tablespace size used for index rebuild. I need this information to avoid the insufficient temporary tablespace error during the huge index rebuild.
    Is there a query or procedure to find it out.
    Thank you.

    Hi,
    While creating the index, the temporary segment is created in the permanent tablespace. So permanent tablespace must have sufficient space.
    http://www.oracle-base.com/articles/10g/SpaceObjectTransactionManagement10g.php
    http://aprakash.wordpress.com/2010/01/05/numeric-segment-name/
    Anand

  • "max-pool-size"   what is it good for?

    SCreator simple CRUD use:
    After a while I get:
    " Error in allocating a connection. Cause: In-use connections equal max-pool-size and expired max-wait-time. Cannot allocate more connection"
    Which is odd, because its just me using the server/database. It looks like every tiime I run a test, another conection is lost.
    Do I have to restart the server? Is there a way to say "its only me, reuse a single connection"
    why does "connection pooling" make life harder?
    Can I turn it of?
    cheers
    cts

    I got the same error in my JSC project. I search for few days and i found the solution. I do a mistake in my page Navigation. I forgot a slash in <to-view-id>.
    A bad example:
    <navigation-rule>
    <from-view-id>/*</from-view-id>
    <navigation-case>
    <from-outcome>page13</from-outcome>
    <to-view-id>page13.jsp</to-view-id>
    </navigation-case>
    A good example:
    <from-view-id>/*</from-view-id>
    <navigation-case>
    <from-outcome>page13</from-outcome>
    <to-view-id>/page13.jsp</to-view-id>
    </navigation-case>
    with this mistake, the afterRenderedResponse() was never called, and the ResultRowSet was never closed.
    Korbben.

  • SharePoint - Error_1_Error occurred in deployment step 'Add Solution': Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was rea

    Hi,
    I am Shanmugavel, SharePoint developer, 
    I am facing the below SharePoint 2013 deployment issue while deploying using VS2012.
    If i will deploy the same wsp or existing wsp
    (last build) using direct powershell deployment, the solution adding properly, but the same timeout exception coming while activation the features.  Please find the below error.
    I tried the below activists:
    1. Restarted my dev server, DB server. 
    2. tried the same solution id different server
    3. tried existing wsp file (last build version)
    4. Deactivated all the features, including project Active deployment configuration.... but still i am facing the same issue.
    I hope this is not coding level issue, because still my code is not start running, before that some problem coming.
    Please help me any one.....  Last two days i am struck because of this...

    What you need to understand is the installation of a WSP does not do much. It just makes sure that you relevant solution files are deployed to the SharePoint farm.
    Next comes the point when you activate the features. It is when the code which you have written to "Activate" certain features for your custom solution.
    Regarding the error you are getting, it typically means that you have more connections (default is I guess 100) open for a SQL database then you are allowed to.
    If you have a custom database and you are opening a connection, make sure you close it as well.
    Look at the similar discussion here:
    The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool
    size was reached[^]
    I would suggest further to look at the
    ULS logs[^] to get better insight.
    Manas Bhardwaj's Stream : www.manasbhardwaj.net

  • Need info about max HDD size available for Satellite Pro M30-813

    Hello,
    The following question is mainly to be addressed to authorized Toshiba support personnel. What exactly is the limitation of a maximum size of an internal HDD that I could use with my Satellite Pro M30-813?
    Recently, I have bought and installed seagate 160 GB SATA drive, onto which I have successfully installed WXP Pro and have been running it for quite a while with no problems. Recently, I have been copying large amount of data from an external hard drive to my new internal disk, and as the files were being copied as I noticed having about 50 GB free space left, I had experienced windows "delayed write failed" and a massive partition failure with no possibility to recover data. The system would no longer boot and the whole MBR was damaged. As the result, I have lost all data on my new disk.
    Although, I realize that Toshiba is not responsible for additional hardware that I use with my laptop and that is not officially supported by Toshiba, I am certain that as an end user of a Toshiba product I have the right to know about a max HDD size limitation information for my notebook model. Therefore, I request Toshiba technical support representative to give me a straight official answer to my question.
    Thank you in advance,
    Andrejs
    (You may also contact me privately at my e-mail address)

    Hi Andrew
    > The following question is mainly to be addressed to authorized Toshiba support personnel
    I think you are in the wrong area if you are looking for an answer from an authorized Toshiba support.
    This is a Toshiba user-to-user forum! You will meet here Toshiba notebook owner and enthusiasts who share knowledge and tries solve problems but nobody from Tosh :(
    I could provide my experience with the M30 Satellite and the HDD upgrade possibilities.
    In my knowledge the Sat M30 supports a 40GB, 60GB and 80GB HDD for sure.
    In my opinion you could use the 100GB HDD but bigger HDDs will not run and functions correctly.
    So switch to a lower HDD size and enjoy the notebook!
    Ive goggled a little bit and found compatible HDD and the part numbers
    HITACHI GBC000Z810 -> 80GB
    HITACHI GBC00014810 -> 80GB
    TOSHIBA HDD2188B -> 80GB
    HITACHI G8C0000Z610 -> 60GB
    HITACHI G8BC00013610 -> 60GB
    TOSHIBA HDD2183 -> 60GB
    TOSHIBA HDD2184 -> 60GB
    I hope this could help you a little bit!
    Best regards

  • How to set  max-heap-size outside the jnlp file?

    Due to bug_id=6631056 It may not be possible to specify max-heap-size within
    the JNLP file for certain jnlp java applications.
    Are there other possibilities to specify this Jvm parameter?
    In the ControlPanel there is the possibility to specify Xmx for applets but not for jnlp.
    I have tried to add properties like
    "deployment.javaws.jre.0.args=Xmx\=128M" without success
    Many thanks

    Even in JNLP also you can specify the max heap size
    <j2se version="1.5+" initial-heap-size="128m" max-heap-size="512m"/>
    Thanks,
    Suresh
    [http://sureshdevi.co.in|http://sureshdevi.co.in]

  • Different max photo sizes in emails, beams, photo stream?

    I've noticed differences in file sizes when emailing photos from the iPhoto app, when inserting in an email, and when emailing directly from the photo.  I've found that iOS 6 is able to send the largest file when inserting it into an email. If I select email from iPhoto, the full size option is a fraction of that. If I email a photo directly from the photo itself, the full size seems to be somewhere in-between.  I sent a panoramic photo three times, once using each method. Each time I selected to send the FULL file sizes, and each time they were different:
    iPhoto: 1918K
    insert in email: 12004K
    email from photo itself: 3529K
    Is there a reason iOS 6 does this? 
    Why are the full photo file sizes not universal?
    Are the max file sizes being uploaded to photo stream?
    What is the best way to get the largest photo jpg off of the iPhone aside from syncing?

    John,
    You have several options for re-sizing photos, though (continuing from what V.K. has already stated). If you want to "customize" the size of each photo, you'll need to do so before you attach them to an email. They can be re-sized in iPhoto, or they can be opened in Preview and exported as whatever size you like.
    If your images are in iPhoto, select one, then choose File>Export. Use the export dialogue to select the size and compression of the resulting file, save it to someplace like your Desktop, then attach it to an email. The choices, here, are the same as they would be within Mail, but will be applied on an image-by-image basis.
    Scott

  • How to see the tablespace size

    hi
    how to get the tablespace size??
    thx

    Hello,
    select SUM(bytes)/1024/1024 MB from dba_data_files
    where tablespace_name = 'xxxxxx';
    works fine.
    I am trying to build a function for that:
    select SUM(bytes)/1024/1024 MB
    from dba_data_files
    where tablespace_name=upper('&user')
    However, I need to make some enhancements:
    1. how to make comments in sql files?Refer to the REM statement in the sqlplus reference manual
    2. a lot of outputs are generated:
    SQL> @get_size
    Enter value for user: tts1
    old 3: where tablespace_name=upper('&user')
    new 3: where tablespace_name=upper('tts1')
    MB
    2048
    how to avoid that so that only the size is
    displayed.
    for example:
    SQL> @get_size
    Enter value for user: tts1
    MB
    2048
    Refer to set verify off in the sqlplus reference manual.
    >
    3. how to let the function accept a parameter such
    as:
    SQL> @get_size tts1
    Refer to the define command in the sqlplus reference manual.
    >
    4. how to include a usage (help) to that function
    such as:
    SQL> @get_size
    usage: get_size <tablespace name>
    Many thanksRefer to the prompt statement in the sqlplus reference manual.
    Sybrand Bakker
    Senior Oracle DBA

  • What is the max file size that a Adapter Engine [J2SE] can handle ?

    We are having a scenario where a 4 GB compressed file needs to be sent across without mapping, I'm trying to explore the possible options to tackle this scenario.
    Some of the options, we are considering :
    - Sending a file from one Adapter Engine [J2SE] to another Adapter Engine [J2SE] bypassing PI. Adapter Logs will be monitored. What is the maximum file size that can be then handled assuming a standard installation ?
    - What is the max file size that Adapter Engine [J2SE] can send through PI without mapping?
    Any help with the above options or with any other possible solutions to handle extremely large file transfers will be much appreciated.

    Hi,
    j2se is not a good option here
    if you have 4gb then you need a copy solution
    a) build an proxy that will just copy the file from sender dest to receiver
    b) build an adapter that will do the same as proxy)
    this way processing of this message will be controlled with SAP PI/XI
    it will be as quick as copy & paste of the 4gb file
    I did the a) for one of the flow for 300 mb and it works perfectly
    Regards,
    Michal Krawczyk

  • Automation in saving a image file with a specific max file size

    Hi everyone,
    I hope someone can help me by this.
    Background info:
    We got several image files every 2 weeks which should be edited and mainly reduced in size for web purpose. This work needs 1 work day for one man/woman to do, because he/she has to open the file save for web and then set the quality to a value were the file is nearly about 150-200 KB in size.
    The images are different, some have few colors, some have a lot of colors and there are also different in resolution. But they should not be reduced in resolution, only in quality. All other specs of the image should be kept 
    Is there any possible script, plug-in or similar which can do the same (Saving with a specific max. file size) in some automatic and faster way?
    Any help is really appreciated!
    Thanks in advance!
    Kind regards
    Packesel

    *push*
    Hi everyone,
    I still need help with this. Is there any tool (OS X) or script for Photoshop who can fulfill this (see title).
    ANY help is really appreciated!
    Thanks in advance.
    Regards
    Packesel

Maybe you are looking for

  • Printing with HP PSC1210 All in one printer

    Hello all, Anyone out there had any luck finding a driver for the HP PSC1210xi all in one printer with Snow Leopard? I had basic printing functionality under Leopard and would just like to have the same under Snow Leopard. As a workaround, I am able

  • Please help with:  "We had difficulty downloading episodes from your feed" error

    I have attempted to submit my podcast feed to the iTunes Directory and received the above error message.  The feed is http://www.codecmoments.com/reviews/cost-of-a-coffee/feed/ and I am using PowerPress taxonomy casting.  There is currently one episo

  • Adobe story won't save my project.

    Every time I try to save it just says error. I can't quit the web site and I'm very nervous I'm going to loose my work. Does anybody know why this is happening? Please help!

  • 2 Mac Systems on 1 TC and don't see External HD connected to TC from both Mac Systems?

    I cannot see my new external hard drive from both of my MAC systems - iMac and Macbook Pro.  The iMac see's the hard drive within Airport Utility but I cannot get the laptop to see the hard drive because I want to be able to make transfers to the ext

  • New Innerpage object

    Hello all, We want to change the layout slightly of the inner page. To this end I have downloaded the com.sap.portal.layouts.framework par file and made changes to WAandNavPanel.jsp. Firstly, am I on the right track at all? Secondly, I haven't overwr