The number of leaf_blocks does not decrease after delete

hi All,
this the example from Tom's book <<expert oracle database architecture>>, may anyone explain why the leaf_block oes not decrease to 523 after delete.
db version is 10.2.0.3, SEGMENT SPACE MANAGEMENT MANUAL in the tablespace system
sys@CS10G> drop table big_table purge;
Table dropped.
sys@CS10G> @big_table
Table created.
Table altered.
Enter value for 1: 500000
old   3:     l_rows number := &1;
new   3:     l_rows number := 500000;
Enter value for 1: 500000
old   9:         where rownum <= &1;
new   9:         where rownum <= 500000;
PL/SQL procedure successfully completed.
Table altered.
PL/SQL procedure successfully completed.
  COUNT(*)
    500000
sys@CS10G> declare
  2  l_freelist_blocks number;
  3  begin
  4  dbms_space.free_blocks
  5  (
  6  segment_owner => user,
  7  segment_name => 'BIG_TABLE_PK',
  8  segment_type => 'INDEX',
  9  freelist_group_id => 0,
10  free_blks => l_freelist_blocks
11  );
12  dbms_output.put_line(' block on freelist = ' || l_freelist_blocks);
13  end;
14  /
block on freelist = 0
PL/SQL procedure successfully completed.
sys@CS10G> select leaf_blocks from user_indexes where index_name = 'BIG_TABLE_PK';
LEAF_BLOCKS
       1043
sys@CS10G> delete  from big_table where id <= 250000;
250000 rows deleted.
sys@CS10G> commit;
Commit complete.
sys@CS10G> declare
  2  l_freelist_blocks number;
  3  begin
  4  dbms_space.free_blocks
  5  (
  6  segment_owner => user,
  7  segment_name => 'BIG_TABLE_PK',
  8  segment_type => 'INDEX',
  9  freelist_group_id => 0,
10  free_blks => l_freelist_blocks
11  );
12  dbms_output.put_line(' block on freelist = ' || l_freelist_blocks);
13  end;
14  /
block on freelist = 520
PL/SQL procedure successfully completed.
sys@CS10G>
sys@CS10G> select leaf_blocks from user_indexes where index_name = 'BIG_TABLE_PK';
LEAF_BLOCKS
       1043Edited by: Sidney Chen on Aug 15, 2009 3:10 PM

Sidney Chen wrote:
hi All,
this the example from Tom's book <<expert oracle database architecture>>, may anyone explain why the leaf_block oes not decrease to 523 after delete.It's just the way it works - when a leaf block is emptied it is linked into the freelist, but also stays linked into the correct place in the index structure. It will be detached from the structure by a coalesce, or when Oracle needs to use a free block to handle new data.
If you want a couple of reasonable guesses why:
<ul>
a) it probably makes read-consistency of indexes easier to deal with
b) unlinking a block from the structure is expensive (you have to modify the blocks to the left, the right, and above) so Oracle takes the gamble that you're likely to re-insert data in the same block in the near future.
</ul>
Regards
Jonathan Lewis
http://jonathanlewis.wordpress.com
http://www.jlcomp.demon.co.uk
"Science is more than a body of knowledge; it is a way of thinking"
Carl Sagan

Similar Messages

  • Argument error; the number of columns does not equal the number of parameters.

    I am using the Database Toolkit (Enterprise Connectivity) to check for a network connection and then send information from a local database to a SQL database on the network if needed.  In development of the code I continue to receive Error 1 and the Possible Reason(s) is "Argument error; the number of columns does not equal the number of parameters."  I am using the DBToolsSelectData.VI to retrieve data from the local MDB file and the DBToolsInsertData.VI to write it to the SQL file.  The collection of the data from the MDB file is successful and the connection and validation of the table and columns in the SQL file is also successful.  The error occurs when the Insert VI tries to build the query.  The number of columns being written (attempted) does match the number of columns in the data, they are both 16 string arrays.

    Ok, it's taken a bit, and I have a solution! It took a while to figure out what the DCT is doing, but it seems to be working now.
    The reason for the original error is that you were passing into the insert subVI an array of variants - which the input to the VI coerced into a single variant. You were getting the error because as far as the insert VI was concerned you were only passing it a single data value. The way to get around that was to create a cluster with one element for each column value, convert the cluster to a variant and pass the result to the insert VI - see attachment.
    In terms of the other modifications, I made a copy of the endurance.mdb file, emptied it and used it as the destination for the copy.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    NetworkCheck.vi ‏49 KB

  • The music search on the I tunes store does not appear after the latest upgrade to my I phone 4

    The music search feature on the I Tunes store does not appear.  Unable to search since the latest upgrade.

    If you're sure where your library is run this script iTunesXMLPath. The library folder is the folder that file is in. Your media folder is recorded under Edit > Preferences > Advanced and is usually a subfolder of the library folder.
    I recommend you backup your library with the method in this user tip.
    tt2

  • HT4519 how do i delete an email account? The one i want to delete is the only account that does not have a "delete" red bar??

    I have 6 email accounts on my iPhone 6 and want to delete one that is set up incorrectly. It is the only account that does not have the red DELETE bar...what do i need to do to delete it?
    It is hosted by GoDaddy, is this the problem?

    Thank you so very much! That was just what I needed to do, problem solved.

  • The TCP/IP connection does not closed after a VISA close

    I am using the VISA functions to communicate with a Sorenson SGA power supply from a Windows XP computer.  I have the VISA TCPIP Resource defined in MAX and use this alias name in the VISAResourceName for the input to the VISA Open.  Then I write a SCPI command, such as *IDN?, and read the repsonse.  Then I close the VISA session.  When I look at the TCP statistics using the netstat -n command, I get the following response:
    Proto           Local Address                 Foreign Address    State
    TCP            10.10.10.9:3881              10.10.10.1:111       TIME_WAIT
    TCP            10.10.10.9:3882              10.10.10.1:111       TIME_WAIT
    If I query the ID again, I get 2 more TCP connections with different local ports numbers.  Every time I perform the query, I get 2 more TCP port connections at different local ports.  It takes about 1 minute for the TIME_WAIT's to time out.  If I query the Sorenson enough, I can fill up my allowable local port connections.
    1)  Why doesn't the TCP connections go away after the VISA Close?
    2) Should I be opening and closing the VISA session every time I want to talk to the Sorenson?
    3) What does the VISAResourceName control or constant actual do to resolve the alias into a IP?
    This Sorenson power supply does not seem to be very quick to repsond to TCP requests.  If I set the timeout on the VISA Open to anything less the 100ms, I cannot get a session open every time.  It will fail about 50% of the time.
    Has anyone had experince talking to the Sorenson power Supplies using VISA TCPIP?
    Thanks,
    Julia

    Hi Julia,
    Let me try answering your questions here.
    1) I'm actually currently looking into this to see if this is expected behavior, and I'll definitely post back to let you know what I find.
    2) You do not need to close a VISA session everytime you want to communicate with the device, you can leave the same session open and keep using that session, instead closing it out at the end.
    3) The VISA aliases and what they correspond to are stored in a visaconf.ini file. There is more information about this file and where it is located on your hard disk in this KnowledgeBase article here. This visaconf.ini file is checked to see what the actual resources being looked up are.
    Let me know if I answered your questions, I will write back with more information on question 1.
    Rasheel

  • Most of the default Mac Apps does not work after Mavericks Upgrade

    Hi, I did everything, but nothing has brought me out of this misery .
    I Updated Maverick just 2 days after its release. Had no problems, other then slow Finder. I restarted my iMac last week, and got caught with these issues, known to me, not sure what all bugs are there.
    All these apps does not work: App Store, TextEdit, Preview, Terminal, iBooks, Maps, Calendar, Contacts, Mail, etc
    I do not know how to do a clean install, as I had upgraded from Snow Leopord to Mountain Lion and to Maverick using App Store, which does not open at all.
    Hoping to get some response soon from Apple support team to help me.

    Hi Arthur,
    Thanks for the headsup about Apple Support thing... My iMac is not under warranty.
    And below is the report generated from EtreCheck. Hope it can help me find the solution.
    Hardware Information:
              iMac (20-inch, Early 2008)
              iMac - model: iMac8,1
              1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              ATI Radeon HD 2400 - VRAM: 128 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    Startup Items:
              FanControlDaemon - Path: /Library/StartupItems/FanControlDaemon
              HDDFanControlDaemon - Path: /Library/StartupItems/HDDFanControlDaemon
              HP IO - Path: /Library/StartupItems/HP IO
              HP Trap Monitor - Path: /Library/StartupItems/HP Trap Monitor
              MissingSyncListener - Path: /Library/StartupItems/MissingSyncListener
              MySQLCOM - Path: /Library/StartupItems/MySQLCOM
              ParallelsDesktopTransporter - Path: /Library/StartupItems/ParallelsDesktopTransporter
              VirtualBox - Path: /Library/StartupItems/VirtualBox
    System Software:
              OS X 10.9 (13A603) - Uptime: 2 days 2:6:45
    Disk Information:
              WDC WD2500AAJS-40VWA1 disk0 : (250.06 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        My iMac (disk0s2) /: 249.2 GB (22.18 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              Western Digital My Book 1110 999.5 GB
                        WORK (disk1s1) /Volumes/WORK: 375.81 GB (95.66 GB free)
                        PLEASURE (disk1s2) /Volumes/PLEASURE: 623.69 GB (35.57 GB free)
              Apple Inc. Built-in iSight
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.logmein.driver.LogMeInSoundDriver          (1.0.0)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.adobe.SwitchBoard.plist
              [failed] com.google.GoogleML.plist
              [loaded] com.google.keystone.daemon.plist
              [not loaded] com.logmein.logmeinserver.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [loaded] com.wdc.WDDMservice.plist
              [loaded] com.wdc.WDSmartWareServer.plist
              [loaded] rapiback.plist
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.google.keystone.agent.plist
              [loaded] com.logmein.logmeingui.plist
              [not loaded] com.logmein.logmeinguiagent.plist
              [not loaded] com.logmein.logmeinguiagentatlogin.plist
              [loaded] syncmateStarter.plist
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.facebook.videochat.[redacted].plist
              [loaded] com.macpaw.CleanMyMac.helperTool.plist
              [not loaded] com.macpaw.CleanMyMac.trashSizeWatcher.plist
              [loaded] com.macpaw.CleanMyMac.volumeWatcher.plist
    User Login Items:
              AirPort Base Station Agent
              EarthDesk Engine
              LMILaunchAgentFixer
              AdobeResourceSynchronizer
              RealPlayer Downloader Agent
              Windows Phone 7 Connector Agent
              iAntiVirus
              TextEdit
              StatusMenu
              HP Scheduler
              WDQuickView
    3rd Party Preference Panes:
              Application Enhancer
              DivX
              EarthDesk
              Fan Control
              Flash Player
              Flip4Mac WMV
              Growl
              MacFUSE
              WDQuickView
    Internet Plug-ins:
              AdobeExManDetect.plugin
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              DirectorShockwave.plugin
              DivXBrowserPlugin.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              RealPlayer Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
              Picasa.plugin
              Unity Web Player.plugin
              WebEx.plugin
              WebEx64.plugin
    Bad Fonts:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                  29%          mds
                   2%          WindowServer
                   1%          mds_stores
                   1%          LogMeInGUI
                   1%          RealPlayer Downloader Agent
                   1%          EtreCheck
                   1%          FanControlDaemon
                   0%          uTorrent
                   0%          notifyd
                   0%          networkd
    Top Processes by Memory:
              1.00 GB            mds
              106 MB             mds_stores
              78 MB              Google Chrome
              49 MB              Finder
              45 MB              WindowServer
              40 MB              Google Chrome Helper
              37 MB              VLC
              29 MB              uTorrent
              20 MB              EtreCheck
              16 MB              DashboardClient
    Virtual Memory Statistics:
              43 MB              Free RAM
              989 MB             Active RAM
              934 MB             Inactive RAM
              447 MB             Wired RAM
              4.25 GB            Page-ins
              454 MB             Page-outs

  • TABLE SIZE NOT DECREASING AFTER DELETION. BLOCKS NOT BEING RE-USED

    Hi ,
    Problem:
    Table size before deletion: 40GB
    Total rows before deletion: over 200000
    Rows deleted=190000 rows
    Table size after deletion is more (as new data was inserted meanwhile).
    Purpose of table:
    This table is a sort of transaction table.
    Whenever an SR is raised by CSR, data gets inserted into this table and is removed when the status is cleared.
    So there is constant insertion and purging will happen on this table.
    We are using ASSM and tablespace is LOCAL.
    This Table has a LONG column also.
    Is this problem because of LONG column ?
    So here there are 2 problems.
    1) INSERTs are not using the space created by DELETE.
    2) New INSERTs are taking much more space then expected ?
    Let me have your suggestion
    Thanks,

    I think when you do DELETE it removes the data but
    it's not releasing any used space and it's still
    marked as used space. I think reorganizing would help
    to compress and pack all block and relase any unused
    space in blocks. Why do you think that? Deleting data will create space that can be reused by subsequent insert/ update operations. It is not going to release space back to the tablespace to make it available for inserts into other tables in the tablespace, but that's not generally an issue unless you are permanently decreasing the size of a table, which is pretty rare.
    Would you also please explain about different about
    LOB and LONG ? or point me to any link which explain
    baout it.From the Oracle Concepts manual's section on the LONG data type
    "Note:
    Do not create tables with LONG columns. Use LOB columns (CLOB, NCLOB) instead. LONG columns are supported only for backward compatibility.
    Oracle also recommends that you convert existing LONG columns to LOB columns. LOB columns are subject to far fewer restrictions than LONG columns. Further, LOB functionality is enhanced in every release, whereas LONG functionality has been static for several releases."
    LONG was a very badly implemented solution to storing large amounts of data. LOBs are a much, much better designed solution-- you should always be using LOBs.
    Justin

  • After installing Adobe Version X Pro, I still cannot "create" a PDF package from Excel since the Adobe add-in does not appear after installation.  Can someone provide their inputs?

    I'm having issues with getting the Adobe add-in to appear after installing Adobe Version X.  Version XI works but it is not compatible with another software my company uses so we have to stick with Version X.  Please help.

    Make sure your Acrobat X is up to date. 10.0 will not do this, 10.1 is supposed to. Compatible web browsers and PDFMaker applications

  • Why the restart firefox bubble does not show after installing an addon and the remember password bubble is closed (not now x)?

    When I go to a post login page, firefox offers to remember password.
    If this bubble is ignored (by pressing the x or by choosing the Not now option) and i download an add-on on that page that requires browser restart, the bubble of "restart now" which should get triggered after the installation of the add-on is not shown.
    Note: If i press on Remember password or never remember password on this site, the restart bubble shows.

    Possibly you could explain carefully what happens, listing the steps you take.
    As a test/example Would you be able for instance to recreate the problem with this forum as a login site with a password. And with for example this add-on
    * https://addons.mozilla.org/en-US/firefox/addon/places-maintenance/

  • Adminserver does not start after deleting oim_server1 from the console

    Have deleted oim_server1 from weblogic console and. I wanted to reconfig oim but can't extend the domain anymore as OIM is greyed out.
    Please help:
    Can't start Adminserver anymore too:
    WARNING: Error registering the bulk operations MBean.
    java.lang.IllegalArgumentException: WorkManagerMBean 'OIMUIWorkManager' refers to a constraint or request class 'MaxThreadsConstraint-0' but they are deployed on targets that have no servers in common. Please deploy the mbeans so that they have at least one server in common.
    at weblogic.management.configuration.WorkManagerLegalHelper.validateTargets(WorkManagerLegalHelper.java:66)
    at weblogic.management.configuration.WorkManagerMBeanImpl.setMaxThreadsConstraint(WorkManagerMBeanImpl.java:487)
    at weblogic.management.configuration.WorkManagerMBeanImpl$9.resolveReference(WorkManagerMBeanImpl.java:468)
    at weblogic.descriptor.internal.ReferenceManager$UnresolvedReference.resolve(ReferenceManager.java:404)
    at weblogic.descriptor.internal.ReferenceManager.resolveReferences(ReferenceManager.java:296)
    at weblogic.descriptor.internal.DescriptorImpl.resolveReferences(DescriptorImpl.java:328)
    at weblogic.descriptor.BasicDescriptorManager.createDescriptor(BasicDescriptorManager.java:334)
    at weblogic.management.provider.internal.EditAccessImpl.loadBeanTree(Edi
    THANKS!

    Try to boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps.

  • Subscribed calendar does not disappear after deletion

    Hi, I recently deleted a subscription to a calendar on my iPhone, but all the events are still present in my iCloud. So how can I get rid of them?

    Hi Reygok,
    I apologize, I'm a bit unclear on the exact nature of the issue. If you are having issues removing a subscribed calendar or events from iCloud, you may find the following articles helpful:
    iCloud: Delete a calendar
    http://support.apple.com/kb/PH2679
    iCloud: Delete or hide an event
    http://support.apple.com/kb/PH2684
    Regards,
    - Brenden

  • App Signing Error, Number of Folios Does Not Match the Main Folio File

    Hi All;
      I have a 250 page standalone app that I am trying to compile for the Apple Store. I read through the forums and enabled "AppBuilderLoggingEnabled.cfg" in my user directory to capture the issue. Here is the snippet of the log that was created that, to me, shows why the app isn't being signed.
    46386 ERROR [main] codesign.Signer - Failure during signing
    java.lang.RuntimeException: invalid package, number of folios does not match the main folio file (Folio.xml or Issue.xml) 251-250
              at com.adobe.devtech.codesign.IPAOutputHelper.convertFolioProduceFormatToFolio(IPAOutputHelp er.java:272)
              at com.adobe.devtech.codesign.IPAOutputHelper.replacePlaceholderFolio(IPAOutputHelper.java:1 92)
              at com.adobe.devtech.codesign.IPAOutputHelper.execute(IPAOutputHelper.java:82)
              at com.adobe.devtech.codesign.Signer.sign(Signer.java:169)
              at com.adobe.devtech.codesign.Signer.processArgs(Signer.java:106)
              at com.adobe.devtech.codesign.Signer.main(Signer.java:46)
    46388 ERROR [main] codesign.Signer - Error: invalid package, number of folios does not match the main folio file (Folio.xml or Issue.xml) 251-250
    I've stripped out special characters from the article titles and re-built the app only to face the same error. I went ahead and created a new AppID in the Apple Developer Portal, created new provision files, and the error remains. I am now creating a new folio and importing the articles into the new folio to see if that will solve the "number of folios does not match" issue.
    Any help or insight would be amazing. Thank you all.
    -matt

    I created a new folio and imported all of the articles again. After hitting "Create App" for this new folio, at about 10 pages in a "PDF Export" error stopped the create app process. I went into InDesign to update the layout for the 10th page to see that the PDF export issue was stopping me from updating the layouts as well. Something in the InDesign file wasn't playing nice with the folio creation, so I created two new InDesign files, deleted the article, and built a new article from scratch. I was able to import the new layouts as a new article to the main folio and hit "Create App" again. This time there were no issues with the creation process. I synched up the provision files in App Builder and was able to code sign the application.
    I guess the moral of the story is to double and even triple check every article along the way to make sure there are no issues being introduced into the process that will ultimately cause headaches during the distribution phase of app creation!
    -matt

  • Satellite A110-228 LAN does not work after hibernate

    Well, subject says it all, really. The LAN (wired) network does not work after hibernate.
    It seems it cannot find the DHCP server, so after a while it gets a 169.* address.
    After a reboot, the network functions as usual (gets a IP address from the DHCP server)
    Tried the usual things, disconnecting the cable, disabling the LAN device, battery or AC adapter, the behavior is reproducible.
    The wireless network will be restored after a hibernate.
    It needs a little help though (right click on the icon and "recover" or whatever it is called in English)
    Any suggestions?
    Wilm Boerhout

    Hi guys
    In the Toshiba HW setup which is placed in the control panel the options Wake-up on LAN and Built-in LAN should be enabled.
    I think the options are disabled by default.
    Furthermore the default setting for Wake on Settings is OS controlled. To use the Wake-up on LAN function under power off mode, in the device driver for the network card under the menu point Wake On Settings the Value Wake on Magic & Directed must be set.
    Please check this how to enable WOL (first time use):
    1. Go to [Start] -> [Control Panel] -> [Toshiba HWSetup] -> [LAN] tab
    2. Enable Wake-up on LAN
    3. Click [Apply]. System will request to reboot.
    4. After the reboot go to [Start] -> [Control Panel] -> select [System]
    5. On system properties dialog box select [Hardware] tab -> click [Device manager]
    6. On Device manager dialog box select [Networking adapters] -> double click [Intel(R) PRO/100 VE Network Connection]
    7. Go to [Advanced] tab -> select [Wake On Settings] property -> Select [Wake on Magic & Directed]
    8. Press [OK] to close the dialog box.

  • Hp C310 e all in one. Print that is stuck in the print queue, cancel does not remove

    hp C310 e all in one. I have a print that is stuck in the print queue, cancel does not remove says deleting. I have tried shutting down printer, closing word doc, multiple canel all prints. Any Ideas

    Hello mackice,
    Try these steps below to clear the print queue. The steps are listed for Vista and Windows 7 and would be slightly different for XP. If you are using a Mac then the steps below would not work. Please advise what OS you are using.
    Option 1)
    1. Click on start orb
    2. Type in search window: "services.msc" (without the quotes)
    3. click ok
    4. Scroll down to Printer spooler service and click on it in the right side window.
    5. On the left side click stop the service and wait forthe process to stop
    (Do not close the window yet. You will have to restart it here later.)
    6. next delete the print job in the printer queue
    7. then restart the spooler service
    8. Resubmit your new print job.
    Option 2)
    If that doesn't clear it, the next step would be to stop the spooler
    service as stated above
    Go into windows explorer
    (Print job data is collected and stored in a spool file in the spooler
    folder.)
    It is located in:
    C:\WINDOWS\system32\spool\PRINTERS
    Your print job will show 2 files there Example below:
    00002.SHD
    00002.SPL
    Delete the files located in there. There may be several of them
    depending apon how many print jobs you submitted. You will have to
    resubmit your print jobs all over again.
    Next go back to services window and restart the spooler service
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • The transaction does not die after the kill and I have to restart Oracle

    Hi,
    I have this very hard issue with my production environment.
    A transaction started from java hangs after the user has closed the browser before the transaction was completed. The transaction remains in wait for "latch free" in v $ transaction.
    When the WebSphre is stopped the transaction is not closed. Neither the kill on Oracle or on Unix conclude the transaction. The restart of the DB is required.
    The rollback segment pointed to by the transaction is always the same. Although the procedure call by java is always the same.
    The database does not have performance problems and only one transaction per day waits for "latch free" and do not closed.
    The problem could be the rollback segment? Why Oracle is unable to resolve the transaction even if the client is dead and the WebSphere off?
    Regards,
    BingoBongo

    The average duration of the transaction is 10/15 seconds.
    When it lasts longer the client is closed and the transaction remains locked. But not always only in a particular case.
    From this moment the transaction is waiting for "latch free" and the value of the field USED_UBLK/USED_UREC does not increase and not decrease.
    The wait event is always the "latch free".
    The kill (Unix, Oralce) has no effect on the transaction.
    The rollback segment is always the same.
    The procedure call is always acts the same.
    The value of "SECONDS_IN_WAIT-WAIT_TIME/100" increases up to a certain point and then start over again.
    This is a snapshot of a transaction that requires restart of the DB:
    STATUS
    SECONDS_IN_WAIT-WAIT_TIME/100
    CR_CHANGE
    XIDUSN
    SECONDS_IN_WAIT
    WAIT_TIME
    STATE
    EVENT
    USED_UBLK
    USED_UREC
    OSUSER
    CLIENT_INFO
    ROW_WAIT_BLOCK#
    ROW_WAIT_OBJ#
    PROGRAM
    MODULE
    ACTIVE
    399,99
    178
    10
    400
    1
    WAITED KNOWN TIME
    latch free
    11
    738
    was5a
    0
    56204
    JDBC Thin Client
    JDBC Thin Client

Maybe you are looking for

  • Neo Speech not working

    I have just installed Adobe Captivate 8 on my PC (64 bit)  I also have installed the Neo Speech program.  I can see all the 'characters' in the folder so I know they have downloaded and installed on my PC.  However when I go to convert text to speech

  • How to Automate L1 level of work in Windows, Exchange & Hyperv-V environment?

    Hi, I would like to know if Microsoft has any tool to automate L1 or L2 level of tasks. Purpose of automation would be get rid of Human errors & reduce the time it takes to complete. for Example, 1. There is a New joinee in organization, so automatio

  • Vendor created in SRM and sent to MM

    Hi, All procurement (only indirect procurement) will be managed in SRM 7 with ECS. In order to manage vendor request creation with workflow in the portal, we plan to manage all vendor creation in SRM and to replicate it to MM. These vendors will be p

  • Error in opening text file in JSF

    Hello, I am developing a Web application using JavaServer Faces Beta Version 1.0 and the Web application needs to open a text file. I used a Java class called by a backingbean class to open the text file. The problem is that the system cannot find an

  • Adobe Acrobat XI Pro - Trial Copy

    I just downloaded a trial copy of Adobe Acrobat XI Pro.  How do I get started using the product?  Every time I select the icon on my desktop, it takes me back to the download process.