Session and memory details!

Hi!
My log file shows as follows:
metrics Web threads (busy/total): 0/5 Sessions: 575 Total Memory=57624 Free=25022
What's does it mean?Is it a good sign?I am having 575 live sessions?Can anybody explain pl!Thanks

Dear Mark.
Thanks for your reply.
I have tested how much connection is possible by changing the value of
large pool and java pool. Shared pool and pga_aggregate_target are the same.
The database is 10.2.0.2.0 and the os is 32-bit windows enterprise edition sp1.
Thus, there is 2Giga limitation in memory usage for oracle without VLM
configuration.
<pre>
TEST 1 TEST2
Shared Pool     500     500
Large Pool      50     33
Java Pool     50     33
PGA     500     500
</pre>
In test1, the max number of connection is 329.
In test2, the max number of connection is 351.
In both test1 and test2, the size of shared pool and pga are the same.
I just decrease large pool size and java pool size about 34Mega bytes.
As a result, 21 more connection was successful.
I think this means that a session memory is allocated to other area
outside sga and pga.
Thanks and Regards.
Message was edited by:
user507290

Similar Messages

  • ORA-4030  and memory usage by oracle

    I'm looking this documento on metalink:
    Note:233869.1
    Diagnosing and Resolving ORA-4030 errors
    II want to know which process is requesting too much memory.
    The document says:
    On Microsoft windows systems, oracle is implemented by using threads in a single oracle process. Up to now, i didn't find a way to view the memory usage per thread. We can however check if oracle and the operating system agree on the memory used by oracle.
    For the Operating system point of view, we can use task manager. Use the view pusbutton and select Select Columns... make sure Virtual Memory Size is selected.
    And in my system is: 1.716.712 K
    Then I execute this select to get the memory size as viewed by oracle, however, not including the process stack and code size:
    select sum(bytes)/1024/1024 Mb from
    (select bytes from v$sgastat
    union
    select value bytes from
    v$sesstat s,
    v$statname n
    where
    n.STATISTIC# = s.STATISTIC# and
    n.name = 'session pga memory'
    MB
    5711,88542
    How can it possible? 5G!

    Hi,
    It may be from the Paging space of your SYSTEM.
    If you want to know in detail.
    select details from the v$sesstat and get the session wise PGA allocated.
    I also did not understood the statement "And in my system is: 1.716.712 K"
    Dilipkumar Patel.

  • How to display CPU and memory utilization from ST06 in a report

    Hi,
    I want to display CPU Utilization and Memory utilization and File sys details from ST06 transaction in a report.
    Is there any function module or any other method to do that.
    Please advice.
    Thanks,
    Sandeep.

    Hi Ranganath,
    Thanks for your time.
    And thank you very much for the reply.
    Both the function modules are helpful.
    But can u also help me in getting the data of FileSys from ST06.
    Thankyou,
    Sandeep.

  • Profile Performanc​e and Memory shows very large 'VI Time' value

    When I run the Profile Performance and Memory tool on my project, I get very large numbers for VI Time (and Sub VIs Time and Total Time) for some VIs.  For example 1844674407370752.5.  I have selected only 'Timing statistics' and 'Timing details'.  Sometimes the numbers start with reasonable values, then when updating the display with the snapshot button they might get large and stay large.  Other VI Times remain reasonable.
    LabVIEW 2011 Version 11.0 (32-bit).  Windows 7.
    What gives?
     - les

    les,
    the number indicates some kind of overroll.... so, do you have a vi where this happens all the time? Can you share this with us?
    thanks,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Web session and authentification session pb with wl6.0

    Hi,
    I am evaluating weblogic 6.0 on windows 2000.
    I have a little web application, with some URL (html, servlet...), I want to protect.
    So I defined a <security-constraint> element in my web.xml
    file, and I binded the logical roles with real participant in
    weblogic.xml
    It works very well at startup. I launch a browser, request a protected URL and the
    authentification window popup. I enter valid info and I can access my URL.
    Perfect.
    Now I want to give the possibility to my user to terminate a session, to disconmect,
    so I had a button, (disconnect) which invoque a servlet which get the current session
    and invalidate it.
    I checked, the session is destroyed and a new one is defined (new ID, new counter...),
    but my user are still connected. It means that if I want to acces a protected URL,
    I still can do it.
    more strange. In both a secured and unsecured page I print the User Principal. When
    I connect, the two pages print the same and right value.
    But if I disconnect, the unsecured page print null(no connection for this session)
    and the secured page print the principal I used to connect in the previous message.
    I know this message is a little bit long, but I tried to give the cleares context.
    Has anyone ancountered that kind of problem? Is there a solution.
    I pass the test with netscape 4.76, netscape 6.01, Internet Explorer 5.50. I got
    the same behavior each time...
    Thanks
    Nicolas

    If you use a Form to authenticate then the browser is unaware of the
    username and password. The PetStore demonstrates how it's done in
    ..\samples\petStore\source\com\bea\estore\util\WLSecurityAdapter.java
    "Nicolas GANDRIAU" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi John,
    thank you for your answer. It confirmed my first guess, that the
    browser keep the secret info and send them back to the server.
    The server does not make any attachment with the current session.
    But you talk about a "ServletAuthentication" example which presents theway to bind
    the login info in the session. I have not found this servlet, in weblogic6.0 distribution
    or J2EE API.
    Can you give me the exact reference of this servlet.
    Thank you for your help.
    Nicolas
    "John Lindwall" <[email protected]> wrote:
    Nicolas,
    It is my understanding that the authentication information for this
    scenario
    (ie HTTP BASIC authentication) is not contained in the session -- it is
    maintained by the browser and resent with every request. That is why
    invalidating the session makes no difference. If you have a HTTPsnooping
    utility you will see the "Authorization" information (albeit encodedusing
    BASE64) present in the requests from your browser to the server.
    FYI: I've noticed that by using the ServletAuthentication class tomanually
    perform authentication, it DOES in fact store the authentication info in
    the
    session. There is a "done()" method in this class which removes thisinfo
    from the session (ie performs a logout).
    If this link reproduces properly, check it out -- it's a good simple
    explanation of what's going on:
    http://www.support.lotus.com/sims2.nsf/852561c1006719a98525614100588964/877
    a
    0ac029a78f8a8525645f0069a34d?OpenDocument
    For tons of detail on BASIC authentication see
    ftp://ftp.isi.edu/in-notes/rfc2617.txt
    John
    Nicolas GANDRIAU <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am evaluating weblogic 6.0 on windows 2000.
    I have a little web application, with some URL (html, servlet...), I
    want
    to protect.
    So I defined a <security-constraint> element in my web.xml
    file, and I binded the logical roles with real participant in
    weblogic.xml
    It works very well at startup. I launch a browser, request a protectedURL
    and the
    authentification window popup. I enter valid info and I can access myURL.
    Perfect.
    Now I want to give the possibility to my user to terminate a session,to
    disconmect,
    so I had a button, (disconnect) which invoque a servlet which get thecurrent session
    and invalidate it.
    I checked, the session is destroyed and a new one is defined (new ID,new
    counter...),
    but my user are still connected. It means that if I want to acces aprotected URL,
    I still can do it.
    more strange. In both a secured and unsecured page I print the UserPrincipal. When
    I connect, the two pages print the same and right value.
    But if I disconnect, the unsecured page print null(no connection for
    this
    session)
    and the secured page print the principal I used to connect in the
    previous
    message.
    I know this message is a little bit long, but I tried to give the
    cleares
    context.
    Has anyone ancountered that kind of problem? Is there a solution.
    I pass the test with netscape 4.76, netscape 6.01, Internet Explorer
    5.50.
    I got
    the same behavior each time...
    Thanks
    Nicolas

  • Mds process shoots up CPU and Memory

    I upgraded to OS X Mavericks about a month ago and ever since, have had to disable Spotlight due to shooting CPU and Memory. The only way to get my Mac to a usable state is to add Macintosh HD to Spotlight privacy list to prevent indexing. The moment I do that, CPU and Memory get to normal.
    Here is what Memory/CPU looks when I am doing nothing on my Mac and all apps are closed:
    mds
    1.76 GB
    6
    195
    349
    root
    100.2
    42.25
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    No
    Yes
    0 bytes
    0 bytes
    0 bytes
    kernel_task
    598.3 MB
    93
    0
    0
    root
    1.7
    17.61
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    No
    No
    0 bytes
    0 bytes
    0 bytes
    com.apple.IconServicesAgent
    116.1 MB
    2
    65
    214
    RockingVegan
    0.0
    0.80
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    Yes
    Yes
    0 bytes
    0 bytes
    0 bytes
    Finder
    85.5 MB
    6
    296
    165
    RockingVegan
    0.0
    5.99
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    Yes
    No
    0 bytes
    0 bytes
    0 bytes
    WindowServer
    57.0 MB
    5
    297
    112
    _windowserver
    0.7
    9.27
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    No
    No
    0 bytes
    0 bytes
    0 bytes
    CVMCompiler
    48.3 MB
    2
    38
    233
    RockingVegan
    0.0
    5.06
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    No
    Yes
    0 bytes
    0 bytes
    0 bytes
    mds_stores
    34.9 MB
    3
    60
    248
    root
    0.0
    7.16
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    No
    Yes
    0 bytes
    0 bytes
    0 bytes
    mdworker
    32.9 MB
    4
    62
    351
    RockingVegan
    0.0
    3.81
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    Yes
    Yes
    0 bytes
    0 bytes
    0 bytes
    mdworker
    31.6 MB
    4
    62
    354
    RockingVegan
    0.0
    3.66
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    Yes
    Yes
    0 bytes
    0 bytes
    0 bytes
    mdworker
    31.4 MB
    4
    62
    352
    RockingVegan
    0.0
    3.68
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    Yes
    Yes
    0 bytes
    0 bytes
    0 bytes
    mdworker
    31.3 MB
    4
    62
    353
    RockingVegan
    0.0
    3.67
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    Yes
    Yes
    0 bytes
    0 bytes
    0 bytes
    mds
    100.1
    1:07.13
    8
    1
    349
    root
    2.31 GB
    190
    0 bytes
    0 bytes
    0
    0
    No
    No
    0 bytes
    0 bytes
    0 bytes
    64 bit
    No
    Yes
    0 bytes
    0 bytes
    0 bytes
    Here is what EtreCheck shows: I cleaned up a bunch of stuff based on other such discussions. I see a bunch of User Launch Agents - I deleted these from /Library/User Agents - and rebooted, but these don't seem t go away from the list.
    Hardware Information:
        MacBook Pro (15-inch, Late 2011)
        MacBook Pro - model: MacBookPro8,2
        1 2.4 GHz Intel Core i7 CPU: 4 cores
        8 GB RAM
    Video Information:
        Intel HD Graphics 3000 - VRAM: 512 MB
        AMD Radeon HD 6770M - VRAM: 1024 MB
    Audio Plug-ins:
        BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
        AirPlay: Version: 1.9 - SDK 10.9
        AppleAVBAudio: Version: 2.0.0 - SDK 10.9
        iSightAudio: Version: 7.7.3 - SDK 10.9
    System Software:
        OS X 10.9.1 (13B42) - Uptime: 0 days 0:5:9
    Disk Information:
        Hitachi HTS727575A9E362 disk0 : (750.16 GB)
            EFI (disk0s1) <not mounted>: 209.7 MB
            Macintosh HD (disk0s2) /: 749.3 GB (414.88 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        MATSHITADVD-R   UJ-8A8 
    USB Information:
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
        Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
    Launch Agents:
    User Launch Agents:
        [failed]    com.apple.CSConfigDotMacCert-[redacted]@me.com-SharedServices.Agent.plist
        [loaded]    com.macpaw.CleanMyMac.trashSizeWatcher.plist
        [failed]    com.spotify.webhelper.plist
        [failed]    com.UninstallerTool.plist
        [failed]    com.VolumeWatcherTool.plist
    User Login Items:
        None
    3rd Party Preference Panes:
        Citrix online plug-in
        Flash Player
        Java
        MusicManager
    Internet Plug-ins::
        Flash Player: Version: 11.9.900.170 - SDK 10.6
        AdobePDFViewer: Version: 10.1.2
        eMusicRemote: Version: (null)
        googletalkbrowserplugin: Version: 4.9.1.16010
        SpeedDownload Browser Plugin: Version: 2.1.2
        iPhotoPhotocast: Version: 7.0
        AmazonMP3DownloaderPlugin1017265: Version: AmazonMP3DownloaderPlugin 1.0.17
        RealPlayer Plugin: Version: Unknown
        Veoh Plugin: Version: 3.0
        DirectorShockwave: Version: 12.0.7r148 - SDK 10.6
        QuickTime Plugin: Version: 7.7.3
        PDF Browser Plugin: Version: 2.4.2 - SDK 10.6
        FlashPlayer-10.6: Version: 11.9.900.170 - SDK 10.6
        CitrixICAClientPlugIn: Version: 11.1.0
        AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17
        npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5
        DivXBrowserPlugin: Version: 2.2
        eMusic: Version: Unknown
        Silverlight: Version: 5.1.20913.0 - SDK 10.6
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 2.4.4.2
        o1dbrowserplugin: Version: 4.9.1.16010
        SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6
        JavaAppletPlugin: Version: Java 7 Update 45
    User Internet Plug-ins::
        Move-Media-Player: Version: npmnqmp 071706000001
        iGetterBundle: Version: 2.8.5
        OctoshapeWeb: Version: 1.0
    Bad Fonts:
        None
    Old applications:
        Keynote:    Version: 5.3 - SDK 10.5
            /Applications/iWork '09/Keynote.app
        Microsoft Alerts Daemon:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
        Microsoft Chart Converter:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
        Microsoft Clip Gallery:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
        Microsoft Communicator:    Version: 13.1.3 - SDK 10.5
            /Applications/Microsoft Communicator.app
        Microsoft Database Daemon:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
        Microsoft Database Utility:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
        Microsoft Document Connection:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Microsoft Document Connection.app
        Microsoft Excel:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Microsoft Excel.app
        Microsoft Graph:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
        Microsoft Language Register:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
        Microsoft Office Reminders:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
        Microsoft Office Setup Assistant:    Version: 14.2.0 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app
        Microsoft Outlook:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Microsoft Outlook.app
        Microsoft PowerPoint:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
        Microsoft Upload Center:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
        Microsoft Word:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Microsoft Word.app
        Music Manager:    Version: 1.0 - SDK 10.5
            /Applications/MusicManager.app
        My Day:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/My Day.app
        Numbers:    Version: 2.3 - SDK 10.5
            /Applications/iWork '09/Numbers.app
        Open XML for Excel:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
        Pages:    Version: 4.3 - SDK 10.5
            /Applications/iWork '09/Pages.app
        Solver:    Version: 1.0 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
        SyncServicesAgent:    Version: 14.3.9 - SDK 10.5
            /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
    Time Machine:
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 697.84 GB Disk used: 311.45 GB
        Destinations:
            Time Machine Backups [Local] (Last used)
            Total size: 931.19 GB
            Total number of backups: 14
            Oldest backup: 2012-06-30 03:15:51 +0000
            Last backup: 2013-12-18 22:18:59 +0000
            Size of backup disk: Too small
                Backup size 931.19 GB < (Disk used 311.45 GB X 3)
        Time Machine details may not be accurate.
        All volumes being backed up may not be listed.
    Top Processes by CPU:
          100%    mds
            4%    WindowServer
            2%    Activity Monitor
            1%    EtreCheck
            0%    sysmond
    Top Processes by Memory:
        4.40 GB    mds
        115 MB    Finder
        115 MB    com.apple.IconServicesAgent
        66 MB    mds_stores
        57 MB    WindowServer
    Virtual Memory Statistics:
        14 MB    Free RAM
        2.79 GB    Active RAM
        2.78 GB    Inactive RAM
        1.18 GB    Wired RAM
        274 MB    Page-ins
        104 KB    Page-outs

    Step 1:
    Loaded extrinsic user agents:
    com.growl.GrowlLauncher
    com.stellar.VolumeWatcher
    com.stellar.UninstallerTool
    com.spotify.webhelper
    com.macpaw.CleanMyMac.trashSizeWatcher
    Safari extensions:
    DivXHTML5
    Searchme
    Restricted user files: 53
    Extrinsic loadable bundles:
    /System/Library/Extensions/2.2.0/Belcarra.USBLAN_netpart.kext  (com.Belcarra.iokit.USBLAN_netpart)
    /System/Library/Extensions/2.2.0/Belcarra.USBLAN_usbpart.kext  (com.Belcarra.iokit.USBLAN_usbpart)
    /System/Library/Extensions/2.2.0/RemoteControl.USBLAN_usbpart.kext  (com.RemoteControl.USBLAN.usbpart)
    /System/Library/Extensions/3.1.1/Belcarra.USBLAN_netpart.kext  (com.Belcarra.iokit.USBLAN_netpart)
    /System/Library/Extensions/3.1.1/Belcarra.USBLAN_usbpart.kext  (com.Belcarra.iokit.USBLAN_usbpart)
    /System/Library/Extensions/3.1.1/RemoteControl.USBLAN_usbpart.kext  (com.RemoteControl.USBLAN.usbpart)
    /System/Library/Extensions/Belcarra.USBLAN_netpart.kext  (com.Belcarra.iokit.USBLAN_netpart)
    /System/Library/Extensions/Belcarra.USBLAN_usbpart.kext  (com.Belcarra.iokit.USBLAN_usbpart)
    /System/Library/Extensions/daspi.kext  (com.makemkv.kext.daspi)
    /System/Library/Extensions/iavkfs.kext  (com.pctools.iantivirus.kfs)
    /System/Library/Extensions/RemoteControl.USBLAN_usbpart.kext  (com.RemoteControl.USBLAN.usbpart)
    Library/Address Book Plug-Ins/SkypeABDialer.bundle  (com.skype.skypeabdialer)
    Library/Address Book Plug-Ins/SkypeABSMS.bundle  (com.skype.skypeabsms)
    Library/Address Book Plug-Ins/YMsgrCallABPlugin.bundle  (com.yahoo.YMsgrCallABPlugin)
    Library/Address Book Plug-Ins/YMsgrMsnABPlugin.bundle  (com.yahoo.YMsgrMsnABPlugin)
    Library/Address Book Plug-Ins/YMsgrSmsABPlugin.bundle  (com.yahoo.YMsgrSmsABPlugin)
    Library/Address Book Plug-Ins/YMsgrYimABPlugin.bundle  (com.yahoo.YMsgrYimABPlugin)
    Library/Internet Plug-Ins/iGetterBundle.plugin  (com.presenta.iGetterBundle)
    Library/Internet Plug-Ins/Move-Media-Player.plugin  (com.movenetworks.movemediaplayer.plugin)
    Library/Internet Plug-Ins/OctoshapeWeb.plugin  (com.octoshape.browserplugin)
    Library/PreferencePanes/MusicManager.prefPane  (com.google.musicmanager.pref)
    Library/Services/ToastIt.service  (com.roxio.ToastItService)
    /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin  (info.emagic.driver.unitor)
    /Library/Internet Plug-Ins/Accel ViewTIFF.bundle  (com.acordex.AccelViewTIFF)
    /Library/Internet Plug-Ins/AdobePDFViewer.plugin  (com.adobe.acrobat.pdfviewer)
    /Library/Internet Plug-Ins/AmazonMP3DownloaderPlugin.plugin  (com.AmazonMP3DownloaderPluginLib.Amazon MP3 Downloader Plugin)
    /Library/Internet Plug-Ins/AmazonMP3DownloaderPlugin1017265.plugin  (com.AmazonMP3DownloaderPluginLib.Amazon MP3 Downloader Plugin)
    /Library/Internet Plug-Ins/CitrixICAClientPlugIn.plugin  (com.citrix.citrixicaclientplugIn)
    /Library/Internet Plug-Ins/DirectorShockwave.plugin  (com.adobe.director_12_0.shockwave.pluginshim)
    /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin  (com.divx.DivXBrowserPlugin)
    /Library/Internet Plug-Ins/eMusicRemote.plugin  (com.emusic.plugins.emp.mac)
    /Library/Internet Plug-Ins/Flash Player.plugin  (com.macromedia.Flash Player.plugin)
    /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin  (net.telestream.wmv.plugin)
    /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin  (com.google.googletalkbrowserplugin)
    /Library/Internet Plug-Ins/JavaAppletPlugin.plugin  (com.oracle.java.JavaAppletPlugin)
    /Library/Internet Plug-Ins/npContributeMac.bundle  (com.adobe.npContributeMacBundle)
    /Library/Internet Plug-Ins/npgtpo3dautoplugin.plugin  (com.google.o3d)
    /Library/Internet Plug-Ins/o1dbrowserplugin.plugin  (com.google.o1dbrowserplugin)
    /Library/Internet Plug-Ins/PDF Browser Plugin.plugin  (com.schubert-it.internet-plugin.pdf)
    /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin  (com.microsoft.sharepoint.browserplugin)
    /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin  (com.microsoft.sharepoint.webkitplugin)
    /Library/Internet Plug-Ins/Silverlight.plugin  (com.microsoft.SilverlightPlugin)
    /Library/Internet Plug-Ins/SpeedDownload Browser Plugin.plugin  (com.yazsoft.browserplugin)
    /Library/Internet Plug-Ins/Veoh Plugin.plugin  (com.veoh.plugin)
    /Library/Internet Plug-Ins/Veoh Plugin.webplugin  (com.veoh.webplugin)
    /Library/PreferencePanes/Citrix online plug-in.prefPane  (com.citrix.StandAlone)
    /Library/PreferencePanes/Flash Player.prefPane  (com.adobe.flashplayerpreferences)
    /Library/PreferencePanes/JavaControlPanel.prefPane  (com.oracle.java.JavaControlPanel)
    /Library/QuickTime/SoundboothScoreCodec.component  (com.adobe.SoundboothScoreAudioCodec)
    /Library/ScriptingAdditions/Adobe Unit Types.osax  (No bundle ID)
    /Library/ScriptingAdditions/TotalFinder.osax  (com.binaryage.totalfinder.injector)
    Unsigned shared libraries:
    /usr/lib/libesets.4.dylib
    /usr/lib/libesets_as.4.dylib
    /usr/lib/libsup.dylib
    /usr/local/lib/libavcodec.52.108.0.dylib
    /usr/local/lib/libavcore.0.16.1.dylib
    /usr/local/lib/libavdevice.52.2.3.dylib
    /usr/local/lib/libavfilter.1.74.0.dylib
    /usr/local/lib/libavformat.52.93.0.dylib
    /usr/local/lib/libavutil.50.36.0.dylib
    /usr/local/lib/libfuse_ino64.2.dylib
    /usr/local/lib/libmp3lame.0.dylib
    /usr/local/lib/libntfs-3g.80.dylib
    /usr/local/lib/libntfs.9.0.0.dylib
    /usr/local/lib/libswscale.0.12.0.dylib
    /usr/local/lib/libublio.1.dylib
    Library/LaunchAgents:
    com.UninstallerTool.plist
    com.VolumeWatcherTool.plist
    [email protected]t
    com.macpaw.CleanMyMac.trashSizeWatcher.plist
    com.spotify.webhelper.plist
    /Library/PrivilegedHelperTools:
    com.microsoft.office.licensing.helper
    net.sourceforge.MonolingualHelper
    Library/Fonts:
    Gentium
    GentiumAlt
    TLWHM0NT.TTF
    encodings.dir
    fonts.dir
    fonts.list
    fonts.scale

  • Resource estimation/Sizing (i.e CPU and Memory) for Oracle database servers

    Hi,
    I have came across one of the requirement of Oracle database server sizing in terms of CPU and Memory requirement. Has anybody metalink notes or white paper to have basic estimation or calculation for resources (i.e CPU and RAM) on based of database size, number of concurrent connections/sessions and/or number of transactions.
    I have searched lot on metalink but failed to have such, will be great help if anybody has idea on this. I'm damn sure it has to be, because to start with implementation of IT infrastructure one has to do estimation of resources aligned with IT budget.
    Thanks in advance.
    Mehul.

    You could start the other way around, if you already have a server is it sufficient for the database you want to run on it? Is there sufficient memory? Is it solely a database server (not shared)? How fast are the disks - SAN/RAID/local disk? Does it have the networking capacity (100mbps, gigabit)? How many CPUs, will there be intensive SQL? How does Oracle licensing fit into it? What type of application that will run on the database - OLTP or OLAP?
    If you don't know if there is sufficient memory/CPU then profile the application based on what everyone expects, again, start with OLTP or OLAP and work your way down to the types of queries/jobs that will be run, number of concurrent users and what performance you expect/require. For an OLAP application you may want the fastest disks possible, multiple CPUs and a large SGA and PGA (2-4GB PGA?), pay a little extra for parallel server and partitioning in license fees.
    This is just the start of an investigation, then you can work out what fits into your budget.
    Edited by: Stellios on Sep 26, 2008 4:53 PM

  • Calculating Memory Details takes a longer time tha...

    i just formated my phone, n installed everything from the beginning... Under the menu -> options -> memory details -> phone memory ...which takes a longer time than before to scan the phone memory...i have even installed nokia device status on my phone which also takes a longer time to retrive phone memory & network details than before ?? i remember before it took almost 5 to 10 secs. max now i have to wait like 50 to 60 secs. any problems, which i cant figure it out ? HELP ? Phone is n95 8gb, v 30.0.018 Rm-320

    You can try to download a plugin from this webpage and then see if you can see any change in the speed.
    Webpage is
    http://mosh.nokia.com/content/3EA6C8F029E7DE8BE040​050AEE04678D
    It worked fine for my friend hope it work fine for you.
    Thanxs,
    Sam

  • ISE v1.2 - Endpoint abandoned EAP session and started new

    Hi.
    I have lots of clients that are not able to log on to both wired and wireless networks, and they always fails with these errors.
    5411 Supplicant stopped responding to ISE
    5440 Endpoint abandoned EAP session and started new
    This is with certificate authentication, both for client and for machine.
    The clients are for the most part Windows 7.
    We use both Cisco and Aerohive for wireless, and the switch I have tested with is a Cisco2960S
    A few strange things:
    It works perfectly for a lot of clients too, with the excact same configuration.
    One PC I'm testing with works fine when authenticating via wireless, but when I plug it into the switch, I get these errors.
    I seems to be a timeout of some kind, either to short or too long, but where?
    In the Win7 supplicant?
    In the switch?
    In the Cisco WLC
    or in the Aerohive AP?
    I have spent hours and hours on this problem, but I can't make it go away, it is very exhausting.
    There surely must have been others with the same problem?
    Thank you.

    Thank for trying to help out, but this is.. insanely vague.
    How can i verify that NAS (the C2960S) is properly configured?
    What timers are we talking about here? There are many to choose from..
    The problem is still here, even with the latest patch 7 for ISE 1.2. It works fine on wireless, but not with wired, from the same computer. So it is logic to assume it has something to do with the switch.
    This is the configuration from the switch:
    interface GigabitEthernet1/0/20
      switchport mode access
     authentication event fail action next-method
     authentication open
     authentication order dot1x mab
     authentication port-control auto
     snmp trap mac-notification change added
     dot1x pae authenticator
     spanning-tree portfast
    end
    sh dot1x int g1/0/20
    Dot1x Info for GigabitEthernet1/0/20
    PAE                       = AUTHENTICATOR
    QuietPeriod               = 60
    ServerTimeout             = 0
    SuppTimeout               = 30
    ReAuthMax                 = 2
    MaxReq                    = 2
    TxPeriod                  = 30
    sh run aaa
    aaa authentication login default group radius local
    aaa authentication dot1x default group radius
    aaa authorization exec default group radius local
    aaa authorization network default group radius
    aaa accounting dot1x default start-stop group radius!
    aaa server radius dynamic-author
     client 192.168.100.85
     server-key nope!
     auth-type any
    radius server hmz
     address ipv4 192.168.100.85 auth-port 1812 acct-port 1813
     key nope!
    radius-server attribute 6 on-for-login-auth
    radius-server attribute 6 support-multiple
    radius-server attribute 8 include-in-access-req
    aaa new-model
    aaa session-id common
    Some debug from the switch:
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] Create attr list, session 0x1E0000E0:
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding MAC d43d.7e97.1e26
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Swidb 0x4F8BAC8
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding AAA_ID=14B
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Audit_sid=C0A864FA0000014B6983A2E0
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Domain=DATA (1)
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding [email protected]
    Apr  6 11:07:01.745: %AUTHMGR-5-START: Starting 'dot1x' for client (d43d.7e97.1e26) on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:07:01.745: AUTH-DETAIL: No default action(s) for event RX_METHOD_AGENT_FOUND.
    Apr  6 11:08:21.182: %DOT1X-5-FAIL: Authentication failed for client (d43d.7e97.1e26) on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:08:21.187: %AUTHMGR-7-STOPPING: Stopping 'dot1x' for client d43d.7e97.1e26 on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:08:21.187: %AUTHMGR-5-FAIL: Authorization failed or unapplied for client (d43d.7e97.1e26) on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] Create attr list, session 0x1E0000E0:
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding MAC d43d.7e97.1e26
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Swidb 0x4F8BAC8
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding AAA_ID=14B
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Audit_sid=C0A864FA0000014B6983A2E0
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Domain=DATA (1)
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Username=host/HovedPC.gaasdal.net
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] Create attr list, session 0x1E0000E0:
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding MAC d43d.7e97.1e26
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Swidb 0x4F8BAC8
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding AAA_ID=14B
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Audit_sid=C0A864FA0000014B6983A2E0
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Domain=DATA (1)
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Username=host/HovedPC.gaasdal.net
    Apr  6 11:09:22.079: %AUTHMGR-5-START: Starting 'dot1x' for client (d43d.7e97.1e26) on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:09:22.079: AUTH-DETAIL: No default action(s) for event SESSION_STARTED.

  • Sticky sessions and Load Balancing in WL Clusters

    We are using iPlanet Web Server 4.1 with WebLogic App Server; and would like
    to implement load balancing with sticky sessions and in-memory state
    replication.
    The documentation in Weblogic says that -
    When using in-memory state replication, your WebLogic Server Cluster must
    live behind one or more proxy servers. The proxy servers are smart enough to
    send servlet requests, belonging to the same HTTP session, back to the same
    server in the cluster that holds the session data.
    (Ref: http://www.weblogic.com/docs51/cluster/setup.html)
    Does this mean that the sticky session configuration has to be done on the
    iPlanet Web Server itself ?
    Also, if WebLogic is used as the Web server, does WebLogic provide any
    support for sticky sessions?
    Any help, suggestions or links to useful info are welcome.
    Regards,
    Milind.

    Mike,
    im curious as to why you would recomend using weblogic as a web server in 6.1?
    I would not for the following reasons:
    - it costs 10x more per cpu list
    - it doesnt support hardware accell cards (afaik, please let me know if this has
    changed)
    iplanet is really good a serving up static html and gif's, especially in ssl if you
    have a hardware accell card. So if you have a site with lots of graphics and you use
    ssl a lot, I think its still a better solution.
    -Joel
    Mike Reiche wrote:
    You get sticky round-robin by default.
    You need to have session tracking turned on (i think it is on by default). You
    need to have the WL plugin configured in iPlanet.
    When WL creates an httpSession, it writes a cookie (or rewrites the URL) back
    to the browser. On subsequent requests, the browser sends the cookie and iPlanet
    plug-in directs the request to the correct WL instance based on the ip address
    of the WL server embedded in the cookie.
    If you are using WLS 6.1, I would recommend using it as a web server (and not
    using iPlanet). I imagine that it supports stickly load balancing as well.
    Mike
    Joel Nylund <[email protected]> wrote:
    you get round robin by default, if you want a different scheme you can
    use one
    of the other 3 options (weight, random or parameter).
    -Joel
    I think weight can be set in weblogic properties. I havent used any other
    than
    round robin.
    Milind Prabhu wrote:
    We are using iPlanet Web Server 4.1 with WebLogic App Server; and wouldlike
    to implement load balancing with sticky sessions and in-memory state
    replication.
    The documentation in Weblogic says that -
    When using in-memory state replication, your WebLogic Server Clustermust
    live behind one or more proxy servers. The proxy servers are smartenough to
    send servlet requests, belonging to the same HTTP session, back tothe same
    server in the cluster that holds the session data.
    (Ref: http://www.weblogic.com/docs51/cluster/setup.html)
    Does this mean that the sticky session configuration has to be doneon the
    iPlanet Web Server itself ?
    Also, if WebLogic is used as the Web server, does WebLogic provideany
    support for sticky sessions?
    Any help, suggestions or links to useful info are welcome.
    Regards,
    Milind.

  • Adobe CS6, Audio File length, and memory

    I recently began having issues with my systems memory while using CS6.
    I found this discussion concerning 3.0.
    http://forums.adobe.com/message/2216510
    I am currently working on a piece that runs 36 hours. I have it split into one 20 hour file and the remaining 16 hours in another. After loading either file, my system memory usage climbs up to 90% in about a 15 minute span. It hangs there for about a half hour, drops down 21%, and then begins the cycle again. I've run memory tests, disabled every unnecessary program from starting up, updated Windows. Memory appears to be functioning correctly. I'm really at a loss. I can still work in Auditon, but not very efficiently. I have another box with 3.0, and have no issues with these files on that system.
    Unless I am missing something, there shouldn't be any issue here. Correct?
    System Specs
    Intel [email protected]
    12gigs of RAM
    Windows 7 Pro x64
    500gb Hard Drive x1
    1.5tb Hard Drive x1
    Perhaps I should note I save and work with these files from my D: drive.
    Thank you

    I am working with mono, 44.1, 16bit .wav files. I have no issue opening the Audio Files, I have no issue viewing the files in Waveform, I have no issue viewing the files in Spectral. I have an issue with the system memory. There is absolutely nothing I can think of that could be causing the physical memory usage to cycle the way it does.
    I seldom use a multitrack session, and such is the case with this project. No multitracking sessions are being used.

  • How can we correct and process errorrecords in session and call transaction

    hai all
    how ca we correct and process error records  in session and call transaction method . tell me with coding.
    Edited by: swamy katta on May 14, 2008 10:25 AM
    Edited by: swamy katta on May 14, 2008 10:26 AM
    Edited by: swamy katta on May 14, 2008 10:27 AM

    hi,
    Check out the below sample code ...Here are the records are getting posting with call transaction method and a session is getting created with erroreneous records....
    REPORT  ztest_report
    NO STANDARD PAGE HEADING
                            LINE-SIZE 255
                            MESSAGE-ID ZRASH.
    *                 Internal Table Declarations                          *
    *--Internal Table for Data Uploading.
    DATA : BEGIN OF IT_FFCUST OCCURS 0,
             KUNNR(10),
             BUKRS(4),
             KTOKD(4),
             ANRED(15),
             NAME1(35),
             SORTL(10),
             STRAS(35),
             ORT01(35),
             PSTLZ(10),
             LAND1(3),
             SPRAS(2),
             AKONT(10),
           END OF IT_FFCUST.
    *--Internal Table to Store Error Records.
    DATA : BEGIN OF IT_ERRCUST OCCURS 0,
             KUNNR(10),
             EMSG(255),
           END OF IT_ERRCUST.
    *--Internal Table to Store Successful Records.
    DATA : BEGIN OF IT_SUCCUST OCCURS 0,
             KUNNR(10),
             SMSG(255),
           END OF IT_SUCCUST.
    *--Internal Table for Storing the BDC data.
    DATA : IT_CUSTBDC LIKE BDCDATA OCCURS 0 WITH HEADER LINE.
    *--Internal Table for storing the messages.
    DATA : IT_CUSTMSG LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA : V_FLAG1(1) VALUE ' ',
    "Flag used for opening session.
           V_TLINES LIKE SY-TABIX,
           "For storing total records processed.
           V_ELINES LIKE SY-TABIX,
           "For storing the no of error records.
           V_SLINES LIKE SY-TABIX.
           "For storing the no of success records.
    *          Selection screen                                            *
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS : V_FNAME LIKE RLGRAP-FILENAME,
                 V_SESNAM  LIKE RLGRAP-FILENAME.
    SELECTION-SCREEN END OF BLOCK B1.
    *          Start-of-selection                                          *
    START-OF-SELECTION.
    *-- Form to upload flatfile data into the internal table.
      PERFORM FORM_UPLOADFF.
    *        TOP-OF-PAGE                                                   *
    TOP-OF-PAGE.
      WRITE:/ 'Details of the error and success records for the transaction'
      ULINE.
      SKIP.
    *          End of Selection                                            *
    END-OF-SELECTION.
    *-- Form to Generate a BDC from the Uploaded Internal table
      PERFORM FORM_BDCGENERATE.
    *--To write the totals and the session name.
      PERFORM FORM_WRITEOP.
    *&      Form  form_uploadff
    *     Form to upload flatfile data into the internal table.
    FORM FORM_UPLOADFF .
    *--Variable to change the type of the parameter file name.
      DATA : LV_FILE TYPE STRING.
      LV_FILE = V_FNAME.
    *--Function to upload the flat file to the internal table.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                      =  LV_FILE
    *     FILETYPE                      = 'ASC'
          HAS_FIELD_SEPARATOR           = 'X'
    *     HEADER_LENGTH                 = 0
    *     READ_BY_LINE                  = 'X'
    *     DAT_MODE                      = ' '
    *   IMPORTING
    *     FILELENGTH                    =
    *     HEADER                        =
        TABLES
          DATA_TAB                      = IT_FFCUST
        EXCEPTIONS
          FILE_OPEN_ERROR               = 1
          FILE_READ_ERROR               = 2
          NO_BATCH                      = 3
          GUI_REFUSE_FILETRANSFER       = 4
          INVALID_TYPE                  = 5
          NO_AUTHORITY                  = 6
          UNKNOWN_ERROR                 = 7
          BAD_DATA_FORMAT               = 8
          HEADER_NOT_ALLOWED            = 9
          SEPARATOR_NOT_ALLOWED         = 10
          HEADER_TOO_LONG               = 11
          UNKNOWN_DP_ERROR              = 12
          ACCESS_DENIED                 = 13
          DP_OUT_OF_MEMORY              = 14
          DISK_FULL                     = 15
          DP_TIMEOUT                    = 16
          OTHERS                        = 17
      IF SY-SUBRC = 0.
    *--Deleting the headings from the internal table.
        DELETE IT_FFCUST INDEX 1.
    *--Getting the total number of records uploaded.
        DESCRIBE TABLE IT_FFCUST LINES V_TLINES.
      ENDIF.
    ENDFORM.                    " form_uploadff
    *&      Form  Form_bdcgenerate
    *     Form to Generate a BDC from the Uploaded Internal table
    FORM FORM_BDCGENERATE .
    *--Generating the BDC table for the fields of the internal table.
      LOOP AT IT_FFCUST.
        PERFORM POPULATEBDC USING :
                                    'X' 'SAPMF02D' '0105',
                                    ' ' 'BDC_OKCODE'  '/00' ,
                                    ' ' 'RF02D-KUNNR' IT_FFCUST-KUNNR,
                                    ' ' 'RF02D-BUKRS' IT_FFCUST-BUKRS,
                                    ' ' 'RF02D-KTOKD' IT_FFCUST-KTOKD,
                                    'X' 'SAPMF02D' '0110' ,
                                    ' ' 'BDC_OKCODE'  '/00',
                                    ' ' 'KNA1-ANRED'  IT_FFCUST-ANRED,
                                    ' ' 'KNA1-NAME1' IT_FFCUST-NAME1,
                                    ' ' 'KNA1-SORTL'  IT_FFCUST-SORTL,
                                    ' ' 'KNA1-STRAS' IT_FFCUST-STRAS,
                                    ' ' 'KNA1-ORT01' IT_FFCUST-ORT01,
                                    ' ' 'KNA1-PSTLZ' IT_FFCUST-PSTLZ,
                                    ' ' 'KNA1-LAND1' IT_FFCUST-LAND1,
                                    ' ' 'KNA1-SPRAS' IT_FFCUST-SPRAS,
                                    'X' 'SAPMFO2D' '0120',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0125',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0130',     
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0340',     
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0360',
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0210',     
                                    ' ' 'KNB1-AKONT'  IT_FFCUST-AKONT,
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0215',
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0220',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0230',     
                                    ' ' 'BDC_OKCODE'  '=UPDA'.
    *--Calling the transaction 'fd01'.
        CALL TRANSACTION 'FD01' USING IT_CUSTBDC MODE 'N' UPDATE 'S'
        MESSAGES INTO IT_CUSTMSG.
        IF SY-SUBRC <> 0.
    *--Populating the error records internal table.
          IT_ERRCUST-KUNNR = IT_FFCUST-KUNNR.
          APPEND IT_ERRCUST.
          CLEAR IT_ERRCUST.
    *--Opening a session if there is an error record.
          IF V_FLAG1 = ' '.
            PERFORM FORM_OPENSESSION.
            V_FLAG1 = 'X'.
          ENDIF.
    *--Inserting the error records into already open session.
          IF V_FLAG1 = 'X'.
            PERFORM FORM_INSERT.
          ENDIF.
    *--Populating the Success records internal table.
        ELSE.
          IT_SUCCUST-KUNNR = IT_FFCUST-KUNNR.
          APPEND IT_SUCCUST.
          CLEAR IT_SUCCUST.
        ENDIF.
    *--Displaying the messages.
        IF NOT IT_CUSTMSG[] IS INITIAL.
          PERFORM FORM_FORMATMSG.
        ENDIF.
    *--Clearing the message and bdc tables.
        CLEAR : IT_CUSTBDC[],IT_CUSTMSG[].
      ENDLOOP.
    *--Getting the total no of error records.
      DESCRIBE TABLE IT_ERRCUST LINES V_ELINES.
    *--Getting the total no of successful records.
      DESCRIBE TABLE IT_SUCCUST LINES V_SLINES.
    *--Closing the session only if it is open.
      IF V_FLAG1 = 'X'.
        PERFORM FORM_CLOSESESS.
      ENDIF.
    ENDFORM.                    " Form_bdcgenerate
    *&      Form  populatebdc
    *       FOrm to Populate the BDC table.
    FORM POPULATEBDC  USING    VALUE(P_0178)
                               VALUE(P_0179)
                               VALUE(P_0180).
      IF P_0178 = 'X'.
        IT_CUSTBDC-PROGRAM = P_0179.
        IT_CUSTBDC-DYNPRO = P_0180.
        IT_CUSTBDC-DYNBEGIN = 'X'.
      ELSE.
        IT_CUSTBDC-FNAM = P_0179.
        IT_CUSTBDC-FVAL = P_0180.
      ENDIF.
      APPEND IT_CUSTBDC.
      CLEAR IT_CUSTBDC.
    ENDFORM.                    " populatebdc
    *&      Form  FORM_OPENSESSION
    *       Form to Open a session.
    FORM FORM_OPENSESSION .
    *--Variable to convert the given session name into reqd type.
      DATA : LV_SESNAM(12).
      LV_SESNAM = V_SESNAM.
    *--Opening a session.
      CALL FUNCTION 'BDC_OPEN_GROUP'
       EXPORTING
         CLIENT                    = SY-MANDT
         GROUP                     = LV_SESNAM
         HOLDDATE                  = '20040805'
         KEEP                      = 'X'
         USER                      = SY-UNAME
         PROG                      = SY-CPROG
    *  IMPORTING
    *    QID                       =
       EXCEPTIONS
         CLIENT_INVALID            = 1
         DESTINATION_INVALID       = 2
         GROUP_INVALID             = 3
         GROUP_IS_LOCKED           = 4
         HOLDDATE_INVALID          = 5
         INTERNAL_ERROR            = 6
         QUEUE_ERROR               = 7
         RUNNING                   = 8
         SYSTEM_LOCK_ERROR         = 9
         USER_INVALID              = 10
         OTHERS                    = 11
      IF SY-SUBRC <> 0.
        WRITE :/ 'Session not open'.
      ENDIF.
    ENDFORM.                    " FORM_OPENSESSION
    *&      Form  FORM_INSERT
    *       fORM TO INSERT ERROR RECOED INTO A SESSION.
    FORM FORM_INSERT .
    *--Inserting the record into session.
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          TCODE                  = 'FD01'
    *     POST_LOCAL             = NOVBLOCAL
    *     PRINTING               = NOPRINT
    *     SIMUBATCH              = ' '
    *     CTUPARAMS              = ' '
        TABLES
          DYNPROTAB              = IT_CUSTBDC
        EXCEPTIONS
          INTERNAL_ERROR         = 1
          NOT_OPEN               = 2
          QUEUE_ERROR            = 3
          TCODE_INVALID          = 4
          PRINTING_INVALID       = 5
          POSTING_INVALID        = 6
          OTHERS                 = 7
      IF SY-SUBRC <> 0.
        WRITE :/ 'Unable to insert the record'.
      ENDIF.
    ENDFORM.                    " FORM_INSERT
    *&      Form  FORM_CLOSESESS
    *       Form to Close the Open Session.
    FORM FORM_CLOSESESS .
      CALL FUNCTION 'BDC_CLOSE_GROUP'
        EXCEPTIONS
          NOT_OPEN    = 1
          QUEUE_ERROR = 2
          OTHERS      = 3.
      IF SY-SUBRC <> 0.
      ENDIF.
    ENDFORM.                    " FORM_CLOSESESS
    *&      Form  FORM_FORMATMSG
    *       Form to format messages.
    FORM FORM_FORMATMSG .
    *--Var to store the formatted msg.
      DATA : LV_MSG(255).
      CALL FUNCTION 'FORMAT_MESSAGE'
        EXPORTING
          ID        = SY-MSGID
          LANG      = SY-LANGU
          NO        = SY-MSGNO
          V1        = SY-MSGV1
          V2        = SY-MSGV2
          V3        = SY-MSGV3
          V4        = SY-MSGV4
        IMPORTING
          MSG       = LV_MSG
        EXCEPTIONS
          NOT_FOUND = 1
          OTHERS    = 2.
      IF SY-SUBRC = 0.
        WRITE :/ LV_MSG.
      ENDIF.
      ULINE.
    ENDFORM.                    " FORM_FORMATMSG
    *&      Form  form_writeop
    *       To write the totals and the session name.
    FORM FORM_WRITEOP .
      WRITE :/ 'Total Records Uploaded :',V_TLINES,
               / 'No of Error Records :',V_ELINES,
               / 'No of Success Records :',V_SLINES,
               / 'Name of the Session :',V_SESNAM.
      ULINE.
    ENDFORM.                    " form_writeop
    *  if routeindicator is initial.
    *   LOOP AT IT_YMMEE00090.
    *      LV_LENGTH = STRLEN( IT_YMMEE00090-CHANGETYPE ).
    *      IF SY-TABIX = '1'.
    *        IF  IT_YMMEE00090-CHANGETYPE = 'B' AND LV_LENGTH = 1.
    *          ROUTEINDICATOR = 'S'.
    *        ELSEIF IT_YMMEE00090-CHANGETYPE = 'R' AND LV_LENGTH = 1.
    *          ROUTEINDICATOR = 'S'.
    *        ELSEIF IT_YMMEE00090-CHANGETYPE = 'S' AND LV_LENGTH = 1.
    *          ROUTEINDICATOR = 'S'.
    *        ELSEIF IT_YMMEE00090-CHANGETYPE CA 'BRSCD' AND LV_LENGTH GT 1
    *                                          AND LV_LENGTH LE 5.
    *          ROUTEINDICATOR = 'S'.
    *        ENDIF.
    *      ELSE.
    *        IF  IT_YMMEE00090-CHANGETYPE = 'B' AND LV_LENGTH = 1 AND
    *                                         ROUTEINDICATOR = 'S'.
    *          ROUTEINDICATOR = 'S'.
    *        ELSEIF IT_YMMEE00090-CHANGETYPE = 'R' AND LV_LENGTH = 1 AND
    *                                         ROUTEINDICATOR = 'S'.
    *          ROUTEINDICATOR = 'S'.
    *        ELSEIF IT_YMMEE00090-CHANGETYPE = 'S' AND LV_LENGTH = 1 AND
    *                                         ROUTEINDICATOR = 'S'.
    *          ROUTEINDICATOR = 'S'.
    *        ELSEIF IT_YMMEE00090-CHANGETYPE CA 'BRSCD' AND LV_LENGTH GT 1
    *                  AND LV_LENGTH LE 5 AND ROUTEINDICATOR = 'S'.
    *          ROUTEINDICATOR = 'S'.
    *        ENDIF.
    *      ENDIF.
    *  ENDLOOP.
    * endif.

  • Killed Session and Rousource

    I want to know when a session is killed , oracle release its resources and update dynamic view ?
    1* select sid,status from v$session where sid = 239
    SQL> /
    SID STATUS
    239 KILLED
    but when i some dynamic views...
    SQL> SELECT *
    2 FROM V$SESSTAT, V$STATNAME
    3 WHERE NAME = 'session uga memory max'
    4 AND V$SESSTAT.STATISTIC# = V$STATNAME.STATISTIC#
    5 and sid = 239
    6 /
    SID STATISTIC# VALUE STATISTIC# NAME
    239 16 43355372 16 session uga memory max
    this show that this SID is using 41MB of RAM.
    Please help me

    when a session is killed , oracle release its resources and update dynamic view Only when the changes done by the session are rolled back completely by pmon.

  • OBIEE Session and User list using query

    Hi,
    Is there a way to query the active sessions and its user in OBIEE.
    I need the details (as shown in session info of admin page) in attached pic, using query.
    My requirement is to limit the number of people accessing my application. Like if I configure 5, only 5 active session should be allowed in OBIEE.

    Hello 2790438,
    No we cannot achieve this in the current version,Oracle is working on this.
    Regards,
    < Spam signature link deleted by moderator --  it violates OTN forum guidelines as noted in the FAQ's >

  • CPU and Memory Utilisation Report from GROUP in OEM

    Hi,
    I am trying to generate History Average CPU and Memory Utilization from Charts in GROUP, but am getting following error..
    Servlet error: Internal Error has occured. Check the log file for details.
    or Is there any alternate to generate Histoty of Average CPU and Memory Util;ization Report.
    Please help me on this.....
    Thanks in Advance

    Bouns the oms and check

Maybe you are looking for

  • Event handling in file dialog box

    I want to make the test bed for testing event-based stand alone application. I can transfer some values to filename or others. However, How can I handle (Value signaling) the Okay or Cancel button in file dialog box popped up from my test bed? What i

  • After charging iPad mini did not work and it was too hot

    I have left my iPad mini charging for two hours when I unplugged the iPad it was too hot and dead it wouldn't work I led it Coll down a bit and tried again but no change any ones knows what would have happened?

  • Tree Component transparency

    when i try to make transpareny in tree component mouse events misses.what can in do

  • Export for createspace

    Hi all.. Finally got my book formatted and laid out and styled. What a ride! =) Now I'm wanting to send it to createspace...is it best to save as Adobe High Quality Print under Adobe presets? Or export? Print? There's so many options, which is the be

  • Unable to download or access "my stuff" from adobe exchange panel.

    After a successful login to the cc site, from the sign in button on the exchange panel, the message is sorry, we are unable to log you in.  I have closed and started again after cleaning out the cookies etc. How do I fix the problem.  I am on a windo