Table space is showing full

Dear Experts ,
please clarefy me on tablespace
here in my server tablespace is showing 100% full and the status is in Auto turn off mode
can i increase this tablespace or no need to increase
table name     size            Free   used   Auto Ext  Total Size total free size  total used files segments extends status     contents
PSAPUNDO     10,000.00  32.00  100            NO     10,000.00      32.00              100         1         28        3,072   ONLINE        UNDO
PSAPUNDO --- what hapens if it is not increased
Regards

PSAPUNDO is the Oracle tablespace for "UNDO" management
Read,
Note 1035137 - Oracle Database 10g: Automatic Undo Retention
Also as reference read, Note 600141 - Oracle9i: Automatic UNDO Management
Regards
Juan

Similar Messages

  • Problem with table space

    Hello,
    Today suddenly our XI test server stopped working.
    An investigation I found in TOC DB02 that Table space PSAPXITDB is full. I saw the other day was filled with an extreme.
    I looked at a table filled in the table saw that the problematic table is SYS_LOB0000042210C00020 $ $
    With table type LOBSEGMENT
    What could be causing the problem? How do I continue to research the subject?
    Thank you
    Elad

    Hi Elad,
    Go thru the below threads for some workaround about the tablespace issue...
    xi full tablespace
    Re: SAP<SID>DB TableSpace is filling up fast
    Regards,
    Pinangshuk.

  • SSRS Tablix not showing full resultset. Recordset seems truncated.

    Hi,
    I have created a tablix for Test Results History as shown below. All components are added inside of a Rectangle (container). 
    Issue:
    1) This table failed to show full resultset; recordset got truncated. The query returns 316 records, table displays only 239 records, where 240th record got truncated. Please see below screenshot.
    Investigations/Analysis:
    1) I tested with another query that returns 54 records; all records are displayed. Another query that returns 585; only 215 records are displayed. It seems that the number of records is not the limiting factor; the length of the tablix, or the Rectangle
    (container) may possibly be the culprit.
    Question:
    How do I fix this? Please help!

    Hi Simon,
    I do have parameter defined but the "Display Test Result history" parameter only sets below behaviors:
    1) If False, the Rectangle (container) becomes invisible, and the query would return no result (to increase performance)
    2) If True, the Rectangle (container) becomes visible, and the query return valid results
    The behavior I'm seeing right now is that the table is visible, and results are shown. However, some results are missing.
    You may refer to below code:
    declare @SelectedTestPlans nvarchar(500) /* Testing purpose */
    -- set @SelectedTestPlans = '104' /* Testing purpose */
    set @SelectedTestPlans = '81, 79' /* Testing purpose */
    declare @ShowTestResultHistory bit /* Testing purpose */
    set @ShowTestResultHistory = 'true' /* Testing purpose */
    declare @SelectedIDs TABLE(IDs integer)
    insert into @SelectedIDs
    select * from master.dbo.fnSplitIDs(@SelectedTestPlans)
    declare @TestCaseIdsTable TABLE
    TestCaseId int
    /* Update #00-1 - Populate Only TestCaseId */
    insert @TestCaseIdsTable (TestCaseId)
    select distinct
    TestCaseId
    from ([Tfs_Warehouse].[dbo].[FactTestResult] ftr
    inner join [Tfs_Warehouse].[dbo].[DimConfiguration] dc
    on dc.ConfigurationSK = ftr.ConfigurationSK
    inner join @SelectedIDs s
    on ftr.TestPlanSK = s.IDs)
    where (@ShowTestResultHistory = 'true')
    declare @HistoryTable TABLE
    TestCaseId nchar(36),
    Test nvarchar(256),
    Result nvarchar(64),
    OutcomeId tinyint,
    ConfigurationId int,
    Configuration nvarchar(256),
    CreationDate datetime,
    Name nvarchar(4000)
    INSERT @HistoryTable (TestCaseId, Test, Result, OutcomeId, ConfigurationId, Configuration, CreationDate, Name)
    SELECT DR.[TestCaseId]
    ,[Test]
    ,[Outcome] as Result
    ,[OutcomeId]
    ,C.[ConfigurationId]
    ,C.[Name] as Configuration
    ,[CreationDate]
    ,DP.[Name] as 'Run By'
    FROM [Tfs_Warehouse].[dbo].[DimTestResult] DR
    inner join [Tfs_Warehouse].[dbo].[FactTestResult] TR on DR.ResultBK = TR.TestResultBK
    join [Tfs_Warehouse].[dbo].DimConfiguration C on TR.ConfigurationSK = C.ConfigurationSK
    join [Tfs_Warehouse].[dbo].[DimPerson] DP on DR.ExecutedBySK = DP.PersonSK,
    @TestCaseIdsTable TCID
    Where DR.[TestCaseId] = TCID.[TestCaseId]
    And (@ShowTestResultHistory = 'true')
    Select * From @HistoryTable
    Order By [TestCaseId]
    Hmm.. What am I missing here?

  • Free space showing in Table space but not updated on os file system.

    Hi Support,
    I am using oracle 10.2.0.4.0 in ECC6.0. OS is Solaris 10 (Linux).
    We deleted all xml messages from my PI/XI server. its successfully deleted even table space showing free space almost 400GB in DB02 and from brtools also. But from OS side OS file system not showing free space,
    Is any body know about this issue????  do i need to reboot system or any other solution.
    Thanks,
    Kazi Faizan.

    Try to set it up as new device and restore again from the backup:
    How to erase your iOS device and then set it up as a new device or restore it from backups

  • Ur mount point have not more space and ur system table space is full how u

    ur mount point have not more space and ur system table space is full how u resize or add file . u have not other mount point .what steps u follow

    Answers in your duplicated thread: Some inter view Questions Please give prefect answer  help me
    You can get all the answers at http://tahiti.oracle.com.
    You understimate job recruiters, a simple crosscheck is enough to discard people with experience from people who memorize 'interview answers'.
    Don't expect to get a job just because you memorize answers for 'job interviews', get real life experience.

  • Why does undo table space got full even when i commit between inserts??

    Dears,
    I have stored procedure which inserts around 5million record(insert select not applicable); and it always fails because of "ORA-30036: unable to extend segment by 8 in undo tablespace" although the procedure commits after every 10,000 records and the undo table space is 2GB. so my question is why does undo table space got full even if i commit?? & do i have other solution than making the undo auto extend??
    am working on Orcale 9i RAC
    Swaid A. McKey

    Actually, i had the same problem that my UNDO tablespace starting eating too much space, my undo_retention is set as 3hours, but how can estimate it using the view.
    Here the following sample output
    SID     STATISTIC#     VALUE
    3     151     0
    3     152     0
    3     153     0
    Can anyone assist with it ? But i still have the strange feeling why would UNDO get full once commit is being used. Even i did try with AUTOEXTEND and it throw me the errors that can't extend UNDO tablespace.
    Any ideas.....
    Thanks !!
    MB

  • Table Space showing wrong data in ST04

    Hi All,
    We have oracle 10.2.0.4 installed and SAP SRM with latest kernel.
    When i login to SAP and check tablespace in st04 / DB02 it is showing PSAPSR3 TAble space auto extend as on, but i have deactivated the auto extend in all the table space.
    And for the same thing in DB check it is showing as CRITICAL_TABLESPACE having auto extend on as warning.
    Please let me know as it is creating problem in daily monitoring of the system
    Thanks & Regards,
    Balaji.S

    Can you once again check the value for max_extn for those table space?
    This error by brconnect is checked by calculating max_extn.
    You can also check Note 849484 - New CRITICAL_TABLESPACE check condition in BRCONNECT
    Thanks and Regards
    Anindya

  • Internet Explorer randomly shows table spaces

    Hi!
    I have tested this site in Safari, Firefox, and IE on both
    MAC and PC platforms. Everything looks good on the mac side, but
    when viewed on a PC in IE, random spaces are showing up between my
    sliced images. IE on a pc is the only place I'm having a problem.
    Please check out this link and let me know if you have any
    ideas. I am lost.
    http://www.creativetechresources.com/WBO2/markets.html
    Thanks!

    On 14 Mar 2007 in macromedia.dreamweaver, Erica@Creative
    wrote:
    > I have tested this site in Safari, Firefox, and IE on
    both MAC and
    > PC platforms. Everything looks good on the mac side, but
    when viewed
    > on a PC in IE, random spaces are showing up between my
    sliced
    > images. IE on a pc is the only place I'm having a
    problem.
    >
    > Please check out this link and let me know if you have
    any ideas. I
    > am lost.
    >
    >
    http://www.creativetechresources.com/WBO2/markets.html
    You're in quirks mode because of the XML preface:
    <?xml version="1.0"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    Remove that, and all browsers should be in standards mode,
    which will
    make your life easier. Then validate the page, and fix a
    bunch of the
    errors you have, which will also cause problems for you in
    some browsers.
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.creativetechresources.com%2FWBO2%2Fmark ets.html&charset=%28detect+automatically%29&doctype=XHTML+1.0+Strict&verbose=1
    http://alistapart.com/stories/doctype/
    http://hsivonen.iki.fi/doctype/
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/email.php

  • Table space is full

    Hi
    tablespace(PSAPHOD)  is used 99%, how can i increase, there is any option for auto ext
    Tablespace                   Size (kb)      Free (kb)      Used (%)   Tab/ind    Extents    AutoExt (kb)   Used (%)   Status     Backup                                                                               
    PSAPHOD                     30,670,848         15,680         99    100,449    143,618    122.880.000         25    ONLINE     NOT ACTIVE

    To add data file to the Tablspace.
    1.     Logon to the systems as ora<sid>
    2.     Execute  brtools
    3.     Select u201C2 u2013 Space managementu201D
    4.     Select u201C1 u2013 Extend tablespaceu201D
    5.     Select u201C3 u2013 tablespace name 
    6.     Select u201Cc u2013 Continue
    7.     Select u201C3 u2013 give the path for the new file to be added
    8.     Select u201C5 u2013 Size of the new file in MB
    9.     To continue select u201Ccu201D
    10.     Select continue and confirm the return to BRTOOLS menu.
    11.     Exit from the u201CSpace managementu201D menu using b (back)
    12.     Now it is possible to exit from BRTOOLS using option u201C9 u2013 Exit programu201D.
    (a)  BR*Tools main menu:
    1 = Instance management
    2 - Space management
    3 - Segment management
    4 - Backup and database copy
    5 - Restore and recovery
    6 - Check and verification
    7 - Database statistics
    8 - Additional functions
    9 - Exit program
    (b) BR0662I Enter your choice: 2
    Database space management
    1 = Extend tablespace
    2 - Create tablespace
    3 - Drop tablespace
    4 - Alter tablespace
    5 - Alter data file
    6 - Move data file
    7 - Additional space functions
    8 - Reset program status
    (c) BR0662I Enter your choice:   1
    (d) BR0662I Enter your choice:   3
    Give the tablespace name :
    BR0662I Enter your choice:   c, c
    (f) BR0662I Enter your choice:   3
    Select the correct path i.e. where you want to create the data file (must be in sapdata folder)
    (g) BR0662I Enter your choice:   5
    Select the size of the new data file.
    (h) BR0662I Enter your choice:   c, c, c
    END----
    I guess adding 4 GB to PSAPHOD table space is more than sufficient.
    Regards
    Vivek Hegde

  • Table space not getting cleaned after using free method (permanent delete)

    Hi ,
    We are using the free method of the LIB OBJ, to permanently delete the objects. As per documentation, the ContentGarbageCollectionAgent will be cleaning the database which runs in a scheduled mode. But the log of that ContentGargabageCollectionAsgent shows, all zero for objects without reference, objects cleared,etc. I.e the table space remains the same before and after deleteing all the contents in the cmsdk database. But the agent is running as per the schedule but just comes out doing nothing.
    Can anbody put some light on this issue.
    thanks
    Raj.

    Hi Matt,
    Thanks for replying. It's been a very long time waiting for you ;)
    ---"Are you running the 9.2.0.1, 9.2.0.2, or 9.2.0.3 version of the Database?"
    we are using 9.2.0.1
    ---"If you installed the CM SDK schema in the "users" tablespace ......."
    Yes we are using USERS tablespace for our Development.
    I ran the query. The result is:
    SYSTEM MANUAL NOT AFFECTED
    USERS MANUAL NOT AFFECTED
    CTXSYS_DATA MANUAL NOT AFFECTED
    CMSDK1_DATA MANUAL NOT AFFECTED
    (USERS belongs to develpoment cmsdk schema. And CMSDK1 for Prod CMSDK schema)
    From the results I see only "Manual", but still I don't see the tablespace size being coming down. Both table space sizes (USER and CMSDK1) always grows higher and higher.
    Also to let you know, We use ORACLE EM Console (Standalone) application to see the oracle databse information online. Will there be any thing to do with the tool we use to see the table space sizes. We make sure we always refresh it before making a note.
    So is there anything else I can see. Once I saw the ContentGarbageCollection agent to free 1025 objects and deleted 0 objects. But I don't see any change in the table space size. I am little confused b/w freed and deleted.
    thanks once again for your response Matt.
    -Raj.

  • How to show full name of user in crystal report

    Hi. I am using Crystal Report 2008. I need to show full name (first name and last name) of the user logged in. Currently I am using "currentceusername" but it shows the user id that a user uses to login.
    Is there any way to show the full name of the user in crystal report?
    Thanks in advance.

    Hello,
    Not you H4... Can I suggest if someone replies to actually add something of value!!!!
    Cr does not have the ability to query your AD Server. What you would have to do is use a AD query tool or Export Option and export the user info from the log on ID into a Excel or an Access table or something CR could report off of. Then you can add a subreport to get the name from the ID and insert it into the main report.
    Check with your IT department, they should have tools to get the info. I'm not sure if there is a DB connector that would allow you to query the AD server directly but if there is one and it supports ODBC then you can use that as your subreport Data connection.
    Typically names do not change that often so rather than running the Query every time the report is generated it would be better to export the info to a text type file and simply use it for your report. IT can put a rule on to export if the Names change.
    Thank you
    Don

  • Free space not showing after shrinking BootCamp Partition

    I gave a lot of space for the windows 8 bootcamp partition because I thought I am going to install Lots of stuff on it.
    After 3 months I found out that my lion partition is almost full!  And I have 100 GB of free (Unused) partition on my bootcamp partition.
    So I shrunk my bootcamp partition (in windows) by 60 GB.  I plan to expand my lion partition in OSX so then I restarted my mac.
    Next I went to disk Utility and found out that I can't expand my lion partition with the free space.  Until then I realized that lion and windows have different file systems (oops.)  so I decided to expand my windows partition back to normal.
    Then I went back in windows and found out that the free space is not showing in disk management!  What should I do next??
    The free space is showing on top but when I right-click the windows partition the "Extend volume" option is greyed out.
    PS I dont care about the mac partition now.  Did some cleaning with CCleaner and freed 10 GB

    you should have asked first to get some ideas? I would have recommended Paragon CampTuneX which is designed to resize those partitions for you.
    You want to have 20-30GB free space for any OS. If you were using an SSD, at least that much or even more.
    I have no idea if iPartition or gpart can help you now.

  • Table space need to be increased in every week..

    Dear Experts,
    We are facing a new problem .
    The problem is like , Last 6 months back we had done the Hard-ware migration. After
    migration we need to increase the table space in every 10 days.   But before migration , the table
    space was getting ing increased in every 45 days.
    In this way , we dont have much space left with us..
    I am not able to analyse the issue ...
    Please suggest .. What to check and necessary action ...
    Thanks,
    Sanjana

    Hi,
    Thank you for the response. Yes , the hord-ware migration is not linked with this issue. But this is happening after migration . So I was thinking , if any setting might have changed or something like that .
    Deleting all the redundant data in system means , it should run regaularly. And Now new developments have gone to production.
    And the data loads are carrying almost same amount of data. Only 2 changes, Material Master was coming on DELTA , Now its Coming on FULL Load.  Rest all loads are same as before migration.
    Kindly suggest.
    Thanks,
    Sanjana

  • How to Access Table Space Map in Oracle 10g OEM

    How and from where to Access Table Space Map in Oracle 10g OEM ??
    Thanks

    Hi,
    first of all, the online help system of grid control is outstanding. Just click on Help in the upper right corner and enter "Tablespace Extent Map" in the search form.
    Result:
    Show Tablespace Contents Page
    Each Oracle database is divided into one or more logical units called tablespaces. You can use Oracle Enterprise Manager to manage these tablespaces and create or modify the parameters for the tablespaces. Use the Tablespace property sheet to set general and storage information for the specified tablespace.
    Use the Show Tablespace Contents page to display the list of tablespace segments that comprise the existing tablespace. You can display Tablespace Extents by choosing Show Tablespace Extent Map at the bottom of the page. An extent is a logical unit of database storage space allocation made up of a number of contiguous data blocks. One or more extents in turn make up a segment. When the existing space in a segment is completely used, Oracle allocates a new extent for the segment.
    You can view segment extents by clicking on the link in the Extents column to display the Extents in Segments page.
    You can display the Show Tablespace Contents page by choosing Show Tablespace Contents from the command drop down list on the Tablespace property page, the Tablespace View page, or the Tablespace search results page.
    Note: Developers could only display the tablespace map to a maximum hard coded number of 30,000 extents. Tablespaces are often larger than that. If a tablespace is larger than 30,000 extents, the portion over that is displayed as Unmapped. To avoid exceeding the memory capacity of the tablespace map and to display the map without unmapped extents, use a search criteria displaying results of less than 30K extents.
    For an overview of tablespaces, see the "Overview of Tablespaces " chapter of the Oracle Database Concepts Guide.
    For more information about managing tablespaces, see the " Managing Tablespaces" chapter of the Oracle Database Administrators Guide.
    For more information about managing datafiles, see the " Managing Datafiles and Tempfiles" chapter of the Oracle Database Administrator's Guide.

  • Table needs to fit full width of page

    I want to insert a table that is the full width of the page and all cells equal sized. Without dragging each column wider one by one and trying to equal them out manually, is there a quick setting I can choose in the Inspector or elsewhere to just make the table fill the page width? This must be one of the most basic standard options for tables along with "Fit to contents".

    Never mind. Now after struggling with it for several minutes, selecting within the table and clicking outside the table, it suddenly woke up and shows me a resize box on the right. Funny how it didn't appear without a struggle. I have this same issue with text boxes in Keynote and I still haven't gotten it to respond consistently either.

Maybe you are looking for