Oracle Tablespaces are full

Hello!
I have detected through monitoring in Solution Manager that I have a Tablespaces bottleneck in one of the satellite systems.
The tablespace PSA<SID> as well as SYSTEM are almost 100% full.
How can I resolve this problem
a) with SAP resources
b) on the OS layer with sqlplus "/ as sysdba" ...
Thank you very much!
regards
Thom

Hi,
I do not think BRTOOLS is difficult.
it is menu driven, and quite easy.
If a datafile is added, it will follow SAP standards, it automatically creates the needed directories, you only have to fill the required data ( size of the datafile, location, if you want it autoextend ... )
If you add a datafile manually, it will not follow SAP standards and then, you can have errors using BRTOOLS later on.
Another problem I found is people that tries to use BRTOOLS without
- having a DB knowledge
- having a clue what they want to do
- having read the documentation ( available in the internet at http://help.sap.com or SAP on Oracle )

Similar Messages

  • PSAPSR3700 Tablespace are full

    Hello Experts,
    I have newly installedSolaris/Oracle Solaman server.  Duration of the Sgen (45 only completed)  PSAPSR3 and PSAPSR3700 tablespace full.
      1 - PSAPSR3        DATA  ONLINE    LOCAL    AUTO      NO         3/3
          25927680     99.61      101824     45056000     19128320         2     953
    1392:8769536:827392+:100864:960
      2 - PSAPSR3700     DATA  ONLINE    LOCAL    AUTO      NO         1/1
          21504000     99.99        1792     21504000            0         2
    Please guide me how to fix the issue.
    Thanks
    Thirumal

    Yeah... extend the tablespace...
    Read,
    http://help.sap.com/saphelp_nw04/helpdata/EN/1b/d20f6fe45a9e43b1856ea1b52c9612/content.htm
    Regards
    Juan

  • Tablespaces are 100% full

    Hi All,
    In our SAP ECC 6.0 system 3 tablespaces are full. ( 100% used ) but file settings for these tablespaces is AUTO Extend ON .( oracle version is 10.2.0 )
    We have sufficient space at file system level.
    Please suggest:
    1. Should I have to add files to those tablespaces or no need ?
    2. Shall I change file settings from Auto Extend On to Off at any time with SQL or BRtools?
    Thanks & Regards,
    Veera

    >>1. One of my BASIS colleague suggested to add 4gb space to existing datafile ? How can I extend 4GB space to a data file which is autoextend ON?
    Autoextend on / off has advantage and disadvantages.
    You datafile automatically extended as the data grow. But you need to make sure the disk has sufficient freespace. Also make sure your tablespaces not growing fastly.
    What's you monthly DB growth. If below 10 GB then I suggest you can swith off autoextend and add 32 GB datafile and add more space as you need in future. This way you will have control on your DB growth and also filesystem (disk)
    Both option requires monitoring of your DB and filesystems.
    >>2. If tablespace are 100% ( file settings are auto extend on ) full will it effect on performance.
    There is no performance impact but depends how much size you are extending you datafile by. If you extened you db by less than 1GB or so you may have some performance issue.

  • TEMP tablespace getting full while inserting a CLOB in Trigger

    We have a Oracle 10g (10.2.0.4.0) DB on a Solaris 9 box which also runs our J2EE web-service application on Weblogic 8sp6 server.
    We get around 220K web-service requests from upstream callers daily to insert data in the main table, say TABLE1, which has daily partitions on a date column. This table has around 21 columns out of which 1 is a CLOB column.
    Now this table has an AFTER INSERT trigger which calls a package procedure to insert the same record into another table, say TABLE2.
    From Java application insert statement in executed in below format using a weblogic jdbc connection pool :
    INSERT INTO TABLE1(COLUMN1, COLUMN2, ........., CLOB_COLUMN,........, COLUMN21) VALUES (:1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12, :13, :14, :15, :16, :17, :18, :19, :20);
    Clob object is prepared in application using ojdbc14.jar.
    We are observing a strange issue here. The TEMP tablespace utilization keeps on growing as more and more inserts are executed by application and after ~125K inserts the TEMP tablespace gets full and we start getting ORA-01652 error.
    On further analysis we could see that there are only 7-10 session being maintained but as more and more inserts happen TEMP tablespace utilization goes on increasing for each of these sessions.
    When we tried with inserting just few records and then watching the session details in v$session_wait then we could see that it is in INACTIVE state and waiting for the event ‘SQL*Net message from client’. This does not seem correct as the session has successfully inserted the data and committed the transaction and we can see the data in the tables as well.
    The confusing thing here is when we modify the trigger to pass blank string('' ) instead of the CLOB column to TABLE2 then this issue does not occur. All 200K records are inserted properly and TEMP tablespace utilization also keep always below 1%.
    Can you please help us in solving this issue. Is this related to any oracle issue?
    Inside the package we have tried using DBMS_COPY statement to copy the CLOB column after insert but still same result.
    Code for reference:
    Trigger:
    =====================================
    CREATE OR REPLACE TRIGGER trg
    AFTER INSERT OR UPDATE
    ON TABLE1
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    BEGIN
    IF (:NEW.date_col > SYSDATE - 2)
    THEN
    IF (:NEW.cat IN (1001, 1002))
    THEN
    pkg.process_change
         (:NEW.COLUMN1,
              :NEW.COLUMN2,
              :NEW.CLOB_COLUMN,
    FLAG
    END IF;
    END IF;
    END;
    =====================================
    Package:
    =====================================
    procedure PKG.Process_change(
    p_COLUMN1 number,
    p_COLUMN2 varchar2,
    p_CLOB_COLUMN clob,
    flag boolean
    ) is
    v_watermark pls_integer;
    v_type varchar2(1);
    begin
    if (flag) then
    v_type := 'U';
    else
    v_type := 'I';
    end if;
    select t_seq.nextval into v_watermark from dual;
    insert into TABLE2(
    COLUMN1 number,
    COLUMN2 varchar2,
    CLOB_COLUMN clob,
    watermark,
    dml_type
    )values (
    p_COLUMN1 number,
    p_COLUMN2 varchar2,
    p_CLOB_COLUMN clob,
    v_watermark,
    v_dml_type
    end;
    =====================================

    My first thought on reading your post is that not only are you using a database version that is now so old it is in extended support and even then not even the most recent patchset for it.
    The first thing I would do is move to 11gR2 and if you can't do that at least get to 10.2.0.5 and apply CLOB relevant patches as well.
    Same goes for your operating system. Solaris 9 is ancient: So move to 10 which has vastly improved memory management.
    To help you further it would be really valuable to know the table layout. For example is this a heap table or an IOT? Is it partitioned? Is this RAC? What size are the CLOBs? Are they stored in-line? Chunk size? etc.
    This page should start you down the right road:
    http://docs.oracle.com/cd/B19306_01/appdev.102/b14249/adlob_tables.htm#sthref204
    But I am also wondering why you would use a trigger to, as you say, "insert the same record into another table." This description is a poster child for "bad design."

  • TABLESPACE ABOUT FULL(98 %)

    Our database having 7 tablespaces and one of the tablespace becoming full. OEM shows 98% and show free MB 172.8. Our applications is OLTP and having a lot of transactions , application running 24 hours in the day. I afraid, once table space becomng full(100 %), Our daily operations may be in problem. Will oracle will do automatically get the extents to acquire more spaces or I have to increase the tablespace by adding more datafiles or increase the exisinting datafiles. pls note that .. extent management : local, auto and segment managment : Auto. thanks.

    Hi,
    Did OEM generated alert? i think if autoextend is "on" and maxbytes set to large value, OEM handles it silently, it shows tablespace usage as 98%, but will not generate alert.
    If you want to monitor your production tablespaces, here is the script, consider the last column "MAX_PCT_USED" to identify current tablespace usage regardless autoextend status (ON/OFF).
    set linesize 300;
    SELECT a.tablespace_name TBS_NAME, ROUND (a.bytes_alloc / 1024 / 1024, 0) MEGS_ALLOC,
    ROUND (NVL (b.bytes_free, 0) / 1024 / 1024, 0) MEGS_FREE,
    ROUND ((a.bytes_alloc - NVL (b.bytes_free, 0)) / 1024 / 1024,0) MEGS_USED,
    ROUND ((NVL (b.bytes_free, 0) / a.bytes_alloc) * 100, 2) PCT_FREE,
    100 - ROUND ((NVL (b.bytes_free, 0) / a.bytes_alloc) * 100, 2) PCT_USED,
    ROUND (maxbytes / 1048576, 2) MAX_MEGS_ALLOC,
    100 - ROUND ((a.bytes_alloc - NVL (b.bytes_free, 0)) / maxbytes * 100, 2) MAX_PCT_FREE,
    ROUND ((a.bytes_alloc - NVL (b.bytes_free, 0)) / maxbytes * 100, 2) MAX_PCT_USED
    FROM (SELECT f.tablespace_name, SUM (f.BYTES) bytes_alloc,
    SUM (DECODE (f.autoextensible,'YES',f.maxbytes,'NO', f.BYTES)) maxbytes
    FROM dba_data_files f
    GROUP BY tablespace_name) a,
    (SELECT f.tablespace_name, SUM (f.BYTES) bytes_free
    FROM dba_free_space f
    GROUP BY tablespace_name) b
    WHERE a.tablespace_name = b.tablespace_name(+)
    Regards,
    Vineeth
    Edited by: Vineeth Kalanthodi on Jan 31, 2010 9:04 PM

  • Oracle Tablespace issue

    Hi,
    I am having problem with one of our tablespace. I receive a error message saying unable to extent tablespace very often, even though we have enough space in tablespace, And i also observerd that max(bytes) in dba_free_Space is decreasing everyday. We have oracle 11g and tablespaces are locally manged with ASSM.
    Space in our tablespace is as follows:
    TSName Tot_Size Tot_free PCT_free Max_Free Chunk_Free
    User 44,746,932,224 3,656,908,800 8 1,966,080 4,668
    I get the above result when i execute the following query:
    select a.tablespace_name,sum(a.tots) Tot_Size,
    sum(a.sumb) Tot_Free,
    sum(a.sumb)*100/sum(a.tots) Pct_Free,
    sum(a.largest) Max_Free,sum(a.chunks) Chunks_Free
    from
    select tablespace_name,0 tots,sum(bytes) sumb,
    max(bytes) largest,count(*) chunks
    from dba_free_space a
    group by tablespace_name
    union
    select tablespace_name,sum(bytes) tots,0,0,0 from
    dba_data_files
    group by tablespace_name) a
    group by a.tablespace_name;
    Why is the Max_free very less and it keep decreasing daily. I tried to shrink tables and rebuild indexes to gain some space , nothing helped. Can anyone help me if i am missing anything here ? And also please let me know if you need more information
    Thanks for your time.

    I have read the SAP notes suggested by Alpesh and Harleen. I spoke to the Database admin regarding the following tables for re-organization:
    Tables: VIRSA_CC_ACTVL
                VIRSA_CC_BKGINP
                VIRSA_CC_JOBHST
                VIRSA_CC_PRMVL
                VIRSA_CC_SCHEDULER
                VIRSA_CC_THREAD
    He said that it will save around 4Gb only.
    Can you tell me if by setting the following thing in CC>Config>"Additional Options"
    Enable Offline Risk Analysis   - No
    Will we be able to save up space? Our main concern is not to increase further the size because of cost issues. We already increased the size twice earlier. The system was designed as per the sizing guidelines earlier. Thhanks both.
    Thanks for your reply Sudip as well...We will configure automatic addition of tablespace soon after we resolve this issue....
    Regards,
    Venkateswara Rao

  • Tablespace SMS Full

    Hi
    How can I solve the following problem ?:
    SMS tablespace PSAPTEMP (page size 4096) and SMS SYSTOOLSTMPSPACE (page size 4096) are full  (100%)
    SAP R/3 4.7 110 -DB2 9.5    - AIX 5.3
      For PSAPTEMP , Can I use the note 334608 ?
    tks

    Hi Ratnajit,
    Sorry, but I don't understand your suggestion about extend file system, because I has free space in my server. Below information about Tablespaces and free space in my server :
    PS : Both tablespaces in SAP(db02) show 100% full
    OS
    /db2/QAS                         256.000 size         30.579  GB Free              12 % free
    Tablespace ID                        = 2
    Name                                 = SYSTOOLSTMPSPACE
    Type                                 = System managed space
    Contents                             = User Temporary data
    State                                = 0x0000
       Detailed explanation:
         Normal
    Total pages                          = 1
    Useable pages                        = 1
    Used pages                           = 1
    Free pages                           = Not applicable
    High water mark (pages)              = Not applicable
    Page size (bytes)                    = 16384
    Extent size (pages)                  = 2
    Prefetch size (pages)                = 2
    Number of containers                 = 1
               Tablespace Containers for Tablespace 2
    Container ID                         = 0
    Name                                 = /db2/QAS/saptemp1/NODE0000/temp16/SYSTOOLSTMPSPACE.container000
    Type                                 = Path
    Tablespace ID                        = 3
    Name                                 = PSAPTEMP
    Type                                 = System managed space
    Contents                             = System Temporary data
    State                                = 0x0000
       Detailed explanation:
         Normal
    Total pages                          = 1
    Useable pages                        = 1
    Used pages                           = 1
    Free pages                           = Not applicable
    High water mark (pages)              = Not applicable
    Page size (bytes)                    = 4096
    Extent size (pages)                  = 32
    Prefetch size (pages)                = 32
    Number of containers                 = 1
                Tablespace Containers for Tablespace 3
    Container ID                         = 0
    Name                                 = /db2/QAS/saptemp1/NODE0000/temp4/PSAPTEMP.000
    Type                                 = Path
    best regards

  • Tablespace 85% full

    Hi,
    I see a 'Tablespace 85% full' warning in EM. I looked through the tablespace stats and found it has datafiles that are autoextensible and have a maxbyte number set to 1GB.
    Does that mean that the datafiles are autoextensible only till the datafiles reach 1GB?
    Thanks.

    Does that mean that the datafiles are autoextensible only till the datafiles reach 1GB?yes
      1* select tablespace_name, autoextensible, round(maxbytes/(1024*1024)) MB from dba_data_files
    SQL> /
    TABLESPACE_NAME             AUT        MB
    USERS                      YES     32768
    SYSAUX                      YES     32768
    UNDOTBS1                 YES     32768
    SYSTEM                      YES     32768
    EXAMPLE                  YES     32768

  • Will Oracle BPA support full BPMN 2.0 ?

    Will Oracle BPA support full BPMN 2.0 and its conversion into BPEL 2.0 in new releases ? Or is it better to use JDeveloper with it BPM extension?

    Hi,
    Depends on what you expect from Oracle.
    +11gR1 and 11gR2 are fully supported (premier support). 10gR1 and 10gR2 are in extended support. About 9.2 it's a bit more complicated and the general extended support ended : check note 161818.1 for further details.+
    After the extended support there is still the sustaining support.
    Read that to understand the notions :
    http://www.oracle.com/us/support/library/lifetime-support-technology-069183.pdf
    Best regards
    Phil

  • Tablespace getting full quite often [cannot extend tbs], need a script to add data files on reaching the threshold!!

    Good morning Techies,
    I have a OBIEE environment where developers work on continuous data loads and the tablespaces are filled up quite often throwing cannot extend.
    I have a request from the customer to generate some script or automatic adding up of datafiles.
    Can someone here help with the ways of automizing or easing this situation through some script where it ask the users for the path and DB file size etc and creates a datafile with the inputs.
    Or advise any other ways to handle the situation.
    Regards,
    RanG

    Oracle does not but you can write your own job to execute when you reach certain threshold. You can also do this in a GRID so whenever the metric threshold reached, it executes your procedure. Make sure you check your file system space before adding a datafile.
    With BIGFILE tablespace, you might need to change your backup policies.
    Check these link as well:
    tablespace - Can oracle tablesspaces automatically add smallfile datafiles? - Stack Overflow
    Can Oracle Create New Datafile Automatically?

  • How to not display nodes in a tree if Oracle roles are NOT used?

    How to not display nodes in a tree if Oracle roles are NOT used?
    We don't use Oracle DB roles to grant users access to Forms from the menu. We use a template and role system of our own. Basically a few tables with templates and roles.
    We want to convert our normal Forms menu to a tree menu and one of our key requirements is that when the tree is populated ONLY nodes with programs (i.e. forms) he has been granted to execute is shown.
    Since we don't use Oracle Roles how to do this in a tree?
    I created a function to show/hide LEAF nodes, BUT problem is that there are sub-menu nodes showing even if the leaf-nodes under it has not being displayed. My function has suppressed it.
    My tree query is like this:
    SELECT
         t.status, LEVEL, t.label, t.icon, t.node VALUE
    FROM
         tma_tree_menu t
    WHERE
    tma_authenticate_sys_chk_role(USER, t.node) = 1
    CONNECT BY
         PRIOR t.node = t.master
    START WITH
         t.MASTER IS NULL
    ORDER SIBLINGS BY
    t.position
    The tma_authenticate_sys_chk_role will return 1 only if the user has access to the form under that node.
    I tried the FTree functions in Forms but even that has nothing.
    Any help would be greatly appreciated.
    Edited by: Channa on Mar 17, 2010 6:49 AM

    Would you share the source code? I guess what I need is how exactly you retreive the user credentials from the DB table and set that boolean variable.
    and then how to condition it in UIX?

  • When i try to open Photoshop 7.0 I get a message "the search discs are full" and it will not open. Help?

    When I open Photoshop 7.0 I get the message "the search discs are full"  and it will not open.  Help?

    Is your scratch drive over 1 Terabyte? Photoshop 7 was never programmed for those sizes  and will return that type of error if you recently changed drives,
    Solution is to partition that drive to less than one 1 TB or find a smaller drive.
    And update to 7.0.1 Adobe - Photoshop : For Windows : Adobe Photoshop 7.0.1 update
    Gene

  • How do I stop my macbook telling me scratch discs are full

    I have reduced applications photos email etc from my laptop but I am being told 1. Start up discs are full and 2. Scratch discs are full what exactly does this mean. Would more memory help if so what type. The macbook is 2008 2.4 core 2 Duo, 2GB 667 MHz DDR SDRAM. Thanks I know this is a daft question for most people.

    Yeah, same problem here, same sentiment!   it sure feels like harassment.  no solution works (even the absurd ones).  makes me regret the update :s

  • I have three "pages" of apps, not all of which are full.  How do I move an app from one page to another to consolidate?

    I have three pages of apps, not all of which are full.  How do I move apps from one page to another to have full pages?

    Hook your iPad up to your computer and iTunes and move them from within iTunes.
    Or
    Hold down on one of  your apps until they all start to wiggle. Then hold down on the ones you want to move and drag them on the screen. Drag them to the middle left to move them left,(such as from page 2 to page one) middle right ot move them right,(from page 2 to page 3) rearrange as you want.
    When you're done, tap the home key and everything should stop wiggling.

  • Only the first page is printed reduced as setup. All pages afterward are full size with information cut off. Recent problem. Can print from Safari just fine. How can I get all pages to be reduced size?

    Question
    Printing internet pages
    Reduced print size
    Only the first page is reduced and printed as desired
    All pages after the first page are full size with information cut off
    Recent problem never seen before
    Can print from Safari and other software just fine
    How can I get all pages to be reduced size?

    One suggestion worked from the Firefox prints incorrectly link mentioned above by mha007. I'm thrilled since this has been annoying me for weeks. Thanks mha007!
    Reset all Firefox printer settings
    # Open your profile folder:
    # On the menu bar, click on the Help menu and select Troubleshooting Information. The Troubleshooting Information tab will open.
    # Under the Application Basics section, click on Show in Finder. A window with your profile folder will open.
    # Note: If you are unable to open or use Firefox, follow the instructions in Finding your profile without opening Firefox.
    # On the menu bar, click on the Firefox menu and select Quit Firefox.
    # In your profile folder, copy the prefs.js file to another folder to make a backup of it.
    # Open the original prefs.js file in a text editor (such as TextEdit).
    # Remove all lines in prefs.js that start with print. and save the file.
    # If something goes wrong when you open Firefox, close it again and overwrite prefs.js with the backup you made.

Maybe you are looking for

  • Showing diff in billing report from dev to prd

    Hi, my requirement in production document flow - sales order-del-pgi-invoice-cancelled invoice-new invoice we have developed a report for billing documents, in that when i enter the selection screen inputs its not showing the new invoice details, it

  • HT204053 my mac is updated but icloud is not showing up in my system preferences...

    my mac is updated but icloud is not showing up in my system preferences, only MobileMe which looks like it charges a fee.  Are icloud and mobileme the same? i thought they were different.  if they are different why can't i see icloud on my mac?

  • Should we call a transaction within RFC

    Hi, I have a scenario like this. There is a portal application where in customers can create inbound delivery. What I am thinking is portal application will invoke a RFC passing the required data. Within the RFC I can write the BDC code for transacti

  • Tips for finding a NICE Power Mac G5

    I am currently searching for a late 2005 model G5 in _nice condition_. I've come across numerous scuffed up and battered machines on Ebay, but did find a seller who has 'refurbished' Power Macs that are supposed to be in excellent "near-new condition

  • Photoshop Elemets 6 setup files

    In 2008 I bought Photoshop Elements 6 in the Adobe Store. I still have the licence number and id, but the setup files (dmg image) got lost during a re-installation of my Macbook. Is there a way to receive those old files to install the software again