Undo tablespace full even with no active transaction and undo_retention 10s

The 9.2.0.4 instance is AUM (auto undo management). The undo table space is 50G and is almost full.
I have set the undo_retention to 10, previously it was 10800 (3hours). I restart the database. Wait quite long time.
And search on the dba_undo_extents.
select sum(bytes/(1024*1024*1024)),status from dba_undo_extents d where d.tablespace_name='UNDOTBS2' group by status;
SUM(BYTES/(1024*1024*1024)) STATUS
.574447632 EXPIRED
45.5358887 UNEXPIRED
It is hard to explain. 10 seconds already passed, at least all the extents should be expired.
Why so many 45G is still unexpried.
Is there a bug for undo tablespace? how to fix it.
It is a rac instance, I am trouble shooting the undo tablespace issues.
The UNDOTBS2 is for node2 to use.

If you start the database in exclusive (one instance) mode then the database instance can have only one undo tablespace so I would not expect Oracle to do anything with the undo tablespace for the non-running instance.
Run you database as normal and generate undo. See if the status changes. If if does that would imply that Oracle does not expire undo unless the undo segments (rbs segments) are accessed. Please post back with results of what you see.
Between having batch production running on all my databases that use undo tablespaces and the fact we use uniform extent undo tabllespaces I am not in a position to try to duplicate what you are seeing.
HTH -- Mark D Powell --

Similar Messages

  • My ipod touch is not responding when i plugged it  in even with a different cord and restarting my computer

    my ipod touch is not responding when i plugged it  in even with a different cord and restarting my computer and i am using my moms itunes that she has had for a long time and so i cant uninstall itunes.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • I have just bought a new iPhone and gave my old one to my Mum. My problem is that even with a new SIM and phone number I seem to be getting her messages as well as mine on my thread. They are also being recorded as both sent and received so she must be pa

    I have just bought a new iPhone and gave my old one to my Mum. My problem is that even with a new SIM and phone number I seem to be getting her messages as well as mine on my thread. They are also being recorded as both sent and received so she must be paying twice for each SMS sent. Help please

    Wipe iPhone/iPad/iPod touch clean
    There are a few steps to do:
    Switch off iMessage in Settings > Messages
    Switch off FaceTime in Settings > FaceTime (iPod touch 4th Generation or later, iPhone 4 or later and iPad 2 or later)
    Delete iCloud in Settings > iCloud > Delete Account
    Finally Settings > General > Reset > Erase All Content and Settings.
    Un-register your device: https://supportprofile.apple.com
    Now you can sell/give.
    Now, you should get her a new Apple ID to sign in the options above.

  • My iPhone 5 is charging but wont turn on even with the hard reset and restore. Keeps showing low battery. HELP PLEASE

    My iPhone 5 shows it's charging but wont turn on even with the hard reset and restore. Just keeps showing low battery. HELP PLEASE
    I usually sleep with my phone on charge through the night and I haven't had any problem since, I left my iphone 5 charging last night and in the morning it stated 100% charged so I decided to turn the power off normally (Hold the hold button till it says slide to turn power off) I turned it off and suddenly my iphone went straight to low battery. Although I have been having weird battery percentage changes for example it would stay on 1 % for an hour or so or drain really quickly.
    I have restored it as i thought was the thing to do all it's doing it restoring and still stating low battery and I have charged it for hours +. I can't hard reset it nor restore it NEED HELP PLEASE.
    Most Apprieciated.

    Hello, skittles_5ive. 
    Thank you for visiting Apple Support Communities. 
    You may find this article helpful in troubleshooting your issue.  If all troubleshooting steps have been processed please see step 6. 
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Regards,
    Jason H.

  • Undo Tablespace Full.

    Hello,
    The size of my UNDOTS is 6 GB and undo_retention=21600.
    After last application upgrade, we the size of UNDOTS are full and we can't fixit and it create a problem, I open a TAR within Oracle and after two days they don't propose any solution.
    Is there any possibility (an Oracle view) that we can see all transaction inside the UDOTS?
    For you information, even I increase the size to 9 GB and I reduce the undo_retention=14400, the result are the same full UNDOTS.
    Thanks for your suggestion and proposition, it's in production
    Regards,
    Message was edited by:
    user579652
    Message was edited by:
    user579652

    The following query/report will help you estimate the amount of undo you require, based on your undo_retention, largest transaction, and block size. If the report shows you need more undo space than you have allocated, then you probably need to increase the amount of undo space or reduce the undo_retention. Pay special attention to the occurances of snapshot too old (ora-01555) and no space.
    == =====================================
    set linesize 120
    set pagesize  60
    alter session set nls_date_format = "dd-Mon-yyyy hh24:mi:ss";
    COL TXNCOUNT         FOR 99,999,999 HEAD 'Txn. Cnt.'
    COL MAXQUERYLEN      FOR 99,999,999 HEAD 'Max|Query|Sec'
    COL MAXCONCURRENCY   FOR 9,999      HEAD 'Max|Concr|Txn'
    COL bks_per_sec      FOR 99,999,999 HEAD 'Blks per|Second'
    COL kb_per_second    FOR 99,999,999 HEAD 'KB per|Second'
    COL undo_mb_required FOR 999,999    HEAD 'MB undo|Needed'
    COL ssolderrcnt      FOR 9,999      HEAD 'ORA-01555|Count'
    COL nospaceerrcnt    FOR 9,999      HEAD 'No Space|Count'
    break on report
    compute max of txncount         -
                   maxquerylen      -
                   maxconcurrency   -
                   bks_per_sec      -
                   kb_per_second    -
                   undo_mb_required on report
    compute  sum of -
                   ssolderrcnt      -
                   nospaceerrcnt    on report
    SELECT begin_time,
           txncount-lag(txncount) over (order by end_time) as txncount,
           maxquerylen,
           maxconcurrency,
           undoblks/((end_time - begin_time)*86400) as bks_per_sec,
           (undoblks/((end_time - begin_time)*86400)) * t.block_size/1024 as kb_per_second,
           ((undoblks/((end_time - begin_time)*86400)) * t.block_size/1024) * TO_NUMBER(p2.value)/1024 as undo_MB_required,
          ssolderrcnt,
          nospaceerrcnt
    FROM v$undostat      s,
          dba_tablespaces t,
          v$parameter     p,
          v$parameter     p2
    WHERE t.tablespace_name = UPPER(p.value)
      AND p.name            = 'undo_tablespace'
      AND p2.name           = 'undo_retention'
    ORDER BY begin_time;
    show parameter undo
    clear computes                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I just had my logic board replaced. now im having trouble using the interent even with a strong connection and the internet is working on other devices!! please help me :(

    I just had my logic board replaced. i am now having trouble with using the interent even with a strong connection. all other devices are having no problem with the internet. please help

    Test while started in Recovery : if the problem persists, then it likely is a hardware issue.
    Resetting the System Management Controller (SMC) probably won't change anything, but you can readily do it before contacting the repairers.

  • Help me with my activation password and activation server address

    hei.. yesterday i tried to wipe my blackberry.. and then all of my data lost.. when I open my setup wizard, then open my email set up, i need activation password and activation server address.. but i don't know what mine.. how is it?
    please help me..

    Hi hikarisora
    Welcome to BlackBerry Support Forums
     Before going to email setup , try registrating your device with your wireless sevice provider .For that  : 
    On the Home screen of the BlackBerry smartphone, click Options, or click Settings > Options
    For BlackBerry Device Software 4.1 to 5.0, Advanced Options > Host Routing Table > 
    Press the Menu key and click Register Now
    Wait till a Registration messages comes in your message box.
    KB00510 How to register a BlackBerry smartphone with the wireless network
    After getting the registration message on your device try setup wizard again.
    Good Luck.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Query to get G/L accounts even with the Zero transactions

    Dear experts,
    i have tried a query as below
    SELECT T0.[AcctCode], T0.[AcctName], T0.[CurrTotal] AS 'Bank Balance', sum(T1.[Debit]) as 'Payment', sum(T1.[Credit]) as 'Collection' FROM OACT T0  LEFT OUTER
    JOIN JDT1 T1 ON T0.AcctCode = T1.Account WHERE T0.[AcctCode] in ('162016','162010','162011','162002','162003','161010') AND T1.RefDate BETWEEN '[%0]' AND '[%1]'
    GROUP BY T0.[AcctCode], T0.[AcctName], T0.[CurrTotal]
    My requirement is
    I have given 5 G/L accounts in where condition. I am getting the report only the account have debit or credit transaction.
    whereas i want account in report even if it has "0" as transaction within that period.
    Thanks in advance,
    dwarak
    Edited by: Dwarakanath.P on Nov 28, 2011 2:51 PM

    Dear Fasolis Vasilios,
    Still am getting only the account having debit or credit sum.
    like this
    #     Account Code     Account Name     Bank Balance     Payment     Collection
    1     161010     Cash A/C     -                        2,376.00                     0                             3,363.00                  
    2     162002     BNP Paribas - USD A/c      11,336,040.71        2,281,479.20     0
    3     162010     BNP Paribas - INR A/c      14,314,924.41        1,845,229.00     1,721,899.00
    4     162016     ING Vysya-CC A/c             98,653,514.21         908,598.70            565,601.00
    Other 2 account is missing since it has no debit and credit.
    Regards,
    Dwarak

  • Can't see fill or stroke even with color activated

    This is a newbie question, but for the life of me I can't figure out what's going on. At some point while I was working on an Illustrator CS2 file, I  accidentally moved or misclicked on an object, and then its fill and  stroke disappeared. In the tool panel, fill and stroke are still  activated and are still the same color they were before, I just can't  see them on the actual image. I can only see the path. Other objects are  still visible, and I've been trying to compare their attributes with  those of the invisible object, but I haven't been able to figure out the  difference.
    Any help would be appreciated!

    Phobic,
    In your Layers screenshot, I count Compound Shapes nested fifteen levels deep. That is an absolutely ridiculous construct, and it is no wonder you are having display problems.
    Select the topmost Compound Shape listed in the Layers palette. Release Compound Shape. Repeat this until you have no more Compound Shapes. Then stay away from the Pathfinder palette until you understand it. (See online Help.) You don't need it for the simply line art you are drawing, based on the screenshot.
    Realize: The Layers palette lists every object in the document. So not everything listed there is a Layer or a SubLayer. Those items titled Compound Shapes are not Layers; they're objects.
    For the kind of artwork you are trying to draw, first get your head around ordinary Compound Paths. When you have to use one closed path to punch a hole in another, use the Object>Compound Path>Make command, not the Pathfinder palette. Compound Paths are basic constructs common across all vector drawing programs. That top row of icons in the Pathfinder palette create compound paths applied as a "live effect"--an Illustrator-specific construct, and one that will just confuse you until you understand the basics of compound paths.
    Understand that each subpath of a compound path has its own winding direction. The winding direction, together with the winding rule, determine whether the subpath "punches" or creates a void in the surrounding subpath. Illustrator does a poorer job of automatically handling those settings than other programs, so you often have to change the direction of direct-selected subpaths. Those settings are in the Attributes palette.
    JET

  • Firefox crashes randomly even with all extensions disabled and new profile, but not in safe mode

    Starting from about 2 weeks ago, Firefox has been crashing. The crashes is seemingly random, but normally happens when many pages/tabs are open. Also, all observed crashes happened in middle of some user operations. If I just leave it open(and loaded), it would never crash even after a long time.
    Also, the crashes would still happen even after ALL extensions are disabled manually. However it doesn't seem to happen in Safe Mode.
    After every crash, in the crash report dialog, the "Details" report would not respond. However I can open the reports using about:crashes.
    Before the crash would happen, sometimes the following ill-behaviors could be observed:
    * Firefox fails to render CJK characters, displaying them as square boxes instead
    * CJK IME(Namely Google Pinyin, an IME for Simplified Chinese) could no longer be activated in Firefox, neither on a webpage element nor on UIs of Firefox itself(i.e. address bar or search bar)
    The following has been tried but no luck:
    * Disable ALL extensions manually
    * Start a new profile
    * Reset Firefox
    * Uninstall/Reinstall Firefox
    * Switch from FX 14 to 15, then to 16 beta

    hello Rainarrow, some other users who have recently updated the graphics driver for their ati hardware (to ati catalyst version 12.8) have reported similar crashes. please try disabling hardware acceleration in firefox > options > advanced > general & see if this resolves the issue of frequent crashes for the moment.

  • Help with adobe activation licensing and expirations and.... everything else

    I went to buy cs5. Because I was buying many for my boss who works at a government funded school, we tried using volume licensing with cdw.
    Our cdw manager was a total moron and kept giving us the wrong quote. Finally we got the right one and bought it, only to find out it was a bunch of licenses and we wanted the box product for at least a few of them. We have some computers without internet....
    So we were either gonna buy 1 box product or return them all.
    As usual the moron gave us more retarted quotes with products we didnt even mention!!
    Well we decided it was too shady and stopped using cdw. We went to the apple store to buy a few box products.
    We bought 2 student and teacher editions.
    then we opened one to find out you arent suppose to buy 2 education editions. Why? who knows. to make my life harder.
    Well we tried installing 1 only to find that you need to give in a promo code with a picture and information.... basically adobe wants my soul in exchange for this stupid thing which is now getting on my nerves. We needed it working a week ago!
    It also says that the student copies will expire... is this true? it will stop working?
    Now I feel like I should just go return both student copies to the apple store and buy 2 official versions with no stupid hassles. But who knows if they will take them back now that one has been opened!
    I'm pissed and hate the whole licensing thing.
    I dont know what to do but I need adobe working now!
    any help would be greatly appreciated.
    thanks!!!

    You will need to speak with Customer Service. This is a User to User forum. No official Adobe presence here. For what its worth I used to get excellent service from PC/Mac/Gov Connection.

  • Couldn't enter my order, failed even with assistance​, bundle expired and still can't get help!

    Tried to order upgraded service on line at least 5 times over a 4 hour period but could not get my order placed. The chat people could not help getting the order to place. Called the business office people to attempt to get my order in but was on hold over 25 minutes and while on hold the bundle expired and was no longer available.
    I was told to record my chat ID# and contact support today but no one can get me to anyone who can help. Does anyone know how to get to the right people?
    Solved!
    Go to Solution.

    Never heard back so I called the business office today and explained my difficulties in attempting to place my order before the bundle deadline expired. The business office didn't have the same package as the on line offer but they customized and met the offer by providing a monthly credit against their package to meet the on line bundle price. The only issue is that I have to pay the taxes on the package at the full rate before the additional monthly credit.
    Its not right as we pay too much in taxes as it is in general (Not the fault of Verizon) but I can live with the resolution.

  • Why does firefox call IP 208.53.130.221 on startup? Even with blank page? And keeps trying the same address even after is shut down? No other browsers does it!

    I can see it via my firewall log; checked for malware, nothing found. It's like Firefox is trying to report somewhere, and it's always the same IP address. I even stopped using firefox all together. Opera doesn't display the same problem, neither does the IE, so this is firefox related.
    Even though I have 3.5.2 now, this is a roll back from the later version - I thought it might be related to later updates, but no, 3.5.2 does the same thing.

    It's the forums that make the image tiny, if you do a right-click > copy shortcut, you can then paste it into a new tab, which will let you see the full size image. It's a 3360x1050 image, maybe a bit big for the forums.
    Basically though, the left image is IE, and that shows an error box. The centre image is Opera, and that shows an empty screen. The right image is FF, and that is how it should look.
    If it's a machine specific error, then I can't work out why it is on several machines in my house... very odd.

  • Problem with PRE_DISP Activity Hook and Scrap of SFC

    We have a scenario where we want to check the max loop count against the times processed counter of a SFC on this routing step after a NC incident (with disposition configured) happened
    So we wrote an activity hook for NC disposition and attached it
    I have different problems with this scenario
    When I use a PRE_DISP activitiy hook I will get the current router/step of the SFC before the disposition happened. So I can get the counters I need
    But when I try to do a scrap of the SFC via API I get the error (after the hook completed):
    Caused by: java.lang.IllegalArgumentException: QTY cannot be <=0
         at com.sap.me.demand.SFCRoutingReleaseWorker.addRouter(SFCRoutingReleaseWorker.java:188)
         at com.sap.me.demand.SFCRoutingBOBean.addRouter(SFCRoutingBOBean.java:131)
    I guess this is because the system tries to do the disposition after the hook and will get an error since it has been scrapped already
    When I use a POST_DISP hook I can do the scrap without errors. But I didn't find any method to get the router/step from where the disposition was started. In the DTO object of the hook I get the old operation but the router is already the new one
    So what is the best solution to the scenario? Is there a possibility to cancel the disposition in the PRE_DISP hook? Or are there methods for getting the router/steps for the SFC before the route was changed to a new one?

    Gentlemen,
    Please do not forget to share a solution with the community.
    Thank you,
    Alex.

  • One plant with ML active status and another plant without ML active status

    We have one ML active plant under the company code X. We need to create another new plant under the same Company code  but we don't want to activate Material Ledger for the same as all the material in this plant are of consumable nature and maintained at Price control "V". Can we do that? Please give your advice.
    Mukesh

    Hi Mukesh
    usually, this is not recommended by SAP... I read this in one of the notes, I dont have the note now...
    However, if you are not going to have any stock transfers from the ML Active Plant to the ML Not active plant - you can think of it
    But, as far as I know, this is not recommended by SAP, Though technically it is possible
    br, Ajay M

Maybe you are looking for

  • JAR file problem with windows operating system rare

    hi, I have an application created with Eclipse 3.2, which also have a plugin that helps me to create jar files, migrate days ago all my application and my data base to a notebook that has a very rare operating system is Windows Vista, but is a versio

  • Work in Flash Catalyst beta not saving or inconsistent

    I just downloaded the Flash Catalyst beta (flashcatalyst_b1_win_060109.exe) 06.03.2009. I'm using the sample files provided with Adobe tutorial http://www.adobe.com/devnet/flashcatalyst/articles/get_started_with_flash_catalyst.html When I open the ec

  • Bootcamp 3.02 vs 3.3 which is better?

    I have a MacBook Pro with 10.6.8, Intel i7, and Boot camp 3.02. Is the 3.3 version better or different. I have bought 32bit Windows 7 install and Office 2010(PC). I wonder if I should download BC 3.3 or use the orig software Utility? Also I have a 75

  • ESS app ess.us.pdata builds fine in dev buildspace but fails in cons....

    Hi Folks,    I have 3 ess apps that build fine in the dev buildspace but the build fails in the cons buildspace...the dev space build and deploy work fine from netweaver and u can see the changes working fine in the portal too.... to take it to the n

  • Continuous iPod Errors

    I'm having a lot of problems with my iPod. Basically it starts like this. iPod just won't be read by iTunes period, shows up in My Computer though. Then I start getting the error 'The file or directory \iPod_Control\Music is corrupt and unreadable. P