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

Similar Messages

  • 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 )

  • 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 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

  • 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.

  • I am getting an error message that reads "Cannot ___ because the scratch disks are full."

    I have had Photoshop Elements 12 on my Macbook for less than a month (free Trial). For the past few days I keep getting an error message that says "Cannot ___ because the scratch disks are full. Can someone please tell me how to fix this problem?

    How much free space is there on the drive where PSE is installed?

  • Could not place picture, scratch disks are full

    Hello, after fresh installation of Windows 7 ultimate on a PC (Intel Core-i5, GA-H97, 8GB RAM, 120 SSD for system, 1TB for data), and Photoshop CC 2014, we have a problem:
    When  trying to add a picture to a new Photoshop document we get the following error message: "Could not place, because the scratch disks are full".
    On C: (the SSD) there is 70GB free space, on D: there is 900GB free space.
    I've defined both disks as scratch disks, then tried to define either of the disks as scratch disk - nothing helped!
    Could you please help us ASAP?
    Thanks in advance.

    Good day!
    Have you restarted Photoshop after changing the Performance Preferences?
    Using the System drive as Scratch Disk is not prudent if it can be avoided.
    Please read this:
    http://helpx.adobe.com/photoshop/kb/optimize-performance-photoshop-cs4-cs5.html
    Regards,
    Pfaffenbichler

  • Final cut pro x keeps on saying files are full when trying to export when their not ?

    Hi
    Final cut pro x keeps on saying files are full when i'm trying to export when they are not full and also what setting do i export them on for a small quicktime?

    The preset that will give you the smallest file is email and you will have 3 choices of size. Not sure what you consider small, but also take a look at Apple Device.
    Your error message is Files are Full or DIsk is Full? Will need more info about your system specs, the format of the clips you're using and your project settings.
    Russ

  • I can't import HD video from Samsung OIS Duo into FCP. However, I can see the video with QT. In FCP, I just see a red bad with a yellow triangle (warning). Can someone help me. The video are Full HD 1080/60i?

    I can't import my HD videos (MP4) from my Samsung OIS Duo into FCP.
    However, I can see the video with QuickTime.
    In FCP, I just see a red box with a yellow triangle at the center(warning). Can someone help me. The video are Full HD 1080/60i.
    I also try converting from MP4 to DV. Cannot import the .DV either.
    Can someone help me?

    Could it be the case that you have "proxy media" selected in the preferences (under Final Cut Pro -> Preferences, click on "Playback" and see which is selected, proxy or optimized), BUT you are not creating proxy media when importing?
    If that is the case, either
      - switch to "original/optimized media",
    or
      - create the proxy media (control-click the clip(s) in the event browser, choose "Transcode media" e check the box for "create proxy media").

  • 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

Maybe you are looking for