How to release sessions  on db server when netwok outage occur

hi,
my database in 10g release 2.About 500 users are remotely connected.due to network breakage or light off at user side the clients disconnect from servers but their session still connected to database server .next time when users connect again then database server hang .how can i resolve this issue means when client disconnect from server then their sessions also disconnect from database server.
thx

Duplicate post.
Please continue instead with
how to release sessions  on db server when netwok outage occur

Similar Messages

  • How to register and unregister Mbean server when jvm is crashed.

    Hi All,
    how to register and unregister Mbean server when jvm is crashed with specifying like internal error(xxxxxxxxxxxsome number)
    I am getting error NameAlreadyBindExcetion when i call the below method in my program, how to unregister and register again, can any one can help on this topic?
    internalConnectorService.start();
    regards
    Prasad.Nadendla

    Looks like your server object is already bound and registered and your trying to re-register the same...
    is that a corba server? if yes, you'd be able to check that with the NamingService tools

  • How to avoid shut down BPELPM Server when creating a user?

    Hi,
    How to avoid shut down BPELPM Server when creating a JAZN user and after doing changes to user-properties.xml?
    Thanks,
    Jorge

    this configuration is only supported on a midtier - there is a work around for a standalone install, nevertheless I would not recommend this for production ..
    if this is NOT a production enviroment - I can try to get you the information .
    /clemens

  • Give notification to Site Collection Owners when an outage occurs in O365

    Is there any way to give notification to Site Collection Owners when an outage occurs in O365 without having to wait for them to call in and report it to the Support Desk?
    On O365 site in the Admin center section the “Service Health page” is there. Service health displays the information regarding any service interruption or outage in the services that are available. Can you please suggest a way to programatically consume
    this Service Health Report? How can I utilize the service health RSS feed, which will send you mail when a new event is added or an existing event is updated. I do not have access to O365 Admin Center.
    Any help would be greatly appreciated.
    Thank you in advance!
    Jitendra

    Jitendra,
    It is quite possible to get rss feed for service health and then configure it as per need.
    To see the status of all your services and their components
    In the Office 365 admin center, in the left pane, click Service health (or Trace
    service health and maintenance).
    On the Current status page, view status for today and the preceding six days. Do any of the following:
    To see additional components or features of a service, click the down arrow next to that service.
    For details, click a status icon (see Status
    icon descriptions).
    To see status history, click View history for past 30 days.
    Click the RSS link to sign up for the service health RSS feed, which will send you mail when a new event is added or an existing event is updated.
    Link -
    https://support.office.com/en-us/article/View-the-status-of-your-services-932ad3ad-533c-418a-b938-6e44e8bc33b0?ui=en-US&rs=en-001&ad=US
    Hope this will help you to solve problem.
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How to start and stop sapmmc server when windows is started and shutdown

    Hi,
    May i know how i can make sure the sapmmc server for ECC 6.0 to start when the windows 2003 server is started. I know i need to add this as a service in the windows service manager but i dont know how to do that.
    Please advise me on how to add a service to start the sapmmc server when windows is started and how to stop the sapmmc server automatically when windows is shutdown.

    Hi Raja
    checkout this document m sure it will help you in configuration
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0512c790-0201-0010-72b7-886677ad7955
    also check
    /message/6511605#6511605 [original link is broken]
    All the best ,,
    Cheers
    dEE

  • How to send "close" message to server when client directly close computer?

    hi~~
    I now have a 9 ppl multiplay game with Socket connection. The clients can sucessfully send a message to server whey they close the game down through pressing X button,but they cant send message when they directly close computer.
    I want to know how to make so available?
    thank

    Whenever we put our computer off directly(like power
    failure), there is no way to inform other computer
    about this mishap. Now it's responsibility of server
    to judge this scenario. In case of sockets, whenever
    we try to write or read from socket whose connection
    is broken, exception is thrown. No. TCP does not work like that.
    If you read from a socket and the other computer aborted the connection, then either the read will timeout (if a read timeout is set) or block forever.

  • How can i avoid restarting tomcat server when servlet is modified?

    please advice me that how can i avoid restarting the tomcat server, whenever a servlet file is modified in my application. is their any way ?

    No probs. Here's how I do things...
    1. Install tomcat as normal (e.g. I install to C:\Apps\jakarta-tomcat-5.5.4)
    2. Create a webapps directory in your eclipse project with the following directory structure
    MyEclipseProject
       - src
       - conf
       - webapps
          - MyApplication
             - META-INF
             - WEB-INF
                - classes
                - lib
                - pages3. Set the project's output folder (e.g. bin folder) to webapps/MyApplication/WEB-INF/classes
    4. Put all your jar files in the lib directory
    5. Put JSPs / HTML in the pages directory (you may also want to create additional directories for TLDs, config files etc)
    6. Ensure your web.xml is in the WEB-INF directory
    7. Although it isn't essential I create a context.xml file and store it in META-INF, e.g.
    <Context reloadable="true">
        <!-- Default set of monitored resources -->
         <WatchedResource>WEB-INF/web.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/struts-config.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/tiles-defs.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/validation.xml</WatchedResource>     
    </Context>I use this to set monitored resources that will trigger an automatic appliation reload and to configure JAAS (not shown). See the Tomcat documentation for additional information.
    8. In the 'conf' directory I create a server.xml file used to configure Tomcat (you can copy the one from your <TOMCAT_HOME>/conf/server.xml).
    After copying the file change appBase attribute in the host element to be the full path to the webapps directory. You can also change the HTTP and HTTPS ports if you wish
    9. Download and install the Tomcat Launcher plugin from Sysdeo.
    10. In Eclipse's Preferences menu you will see a new entry for Tomcat. Click this then
    a. Set your Tomcat Version
    b. Set your Tomcat Home
    c. Set "Context declaration mode" to server.xml
    d. Set the configuration file to the full path to your server.xml file created in step 8
    On the "Advanced " sub page select all relevant projects to add to the Tomcat classpath
    On the "JVM Settings" page add all the jars in your WEB-INF lib directory to the class path
    On the "Source Path" page select all relevant projects
    Now if you start Tomcat using the Tomcat icon, you will be able to remote debug your application. If you change web.xml (or any other file in your context.xml watched resources) it will automatically reload. Any changes to JSPs will automatically be picked up (providing your tell your browser not to use the page in cache - e.g. CTRL+F5 in IE)
    There are some limitations that I'm still working on however. Primarily that I haven't included the Tomcat Manager application in my webapps directory, so Sysdeo cannot perform a reload. This means that if I change a source file, and eclipse auotmatically rebuilds, Tomcat doesn't pick up the change unless I either change a watched resource file (e.g. web.xml) or stop and restart Tomcat.
    There's no reason why this can't be fixed, I just haven't got round to it yet.
    I'm sure there are lots of other (probably better) ways of achieving the same thing. This was the first method I tried and it worked, so I stuck with it. I'm not a Tomcat config guru and I'm sure other forum users could provide some improvements should they wish.
    Post if you get into trouble, however I won't be able to respond until next week.
    Cheers,
    Steve

  • How to keep email on AOL server when mirror email on Mail is deleted?

    I linked my AOL account to Mail.app (on my MacBook) via IMAP protocol using the AOL Service Assistant. I understand that under this protocol, the emails on my IMAP is a mirror image of what is on the AOL server and vice versa. Hence if I delete any messages in Mail, it is also deleted on the AOL server. Is there any way that I can delete the message in Mail but have it remain on the AOL server?
    Thanks in advance for any help.
    MacBook (Black) 1GB   Mac OS X (10.4.8)  
    iBook SE (Firewire) 466   Mac OS 9.0.x  

    Hi DawnMaple!
    I don't use Apple Mail, so I can't directly answer your question, but even if there is a procedure to do what you want, after a certain amount of time, I think it may be about seven days, AOL will still remove the Emails from the server,
    If you want to retain all of your AOL mail, you can do it with the AOL software, if it is installed.
    Open AOL Preferences > Mail.
    Select Save the mail I read & Save the mail I send.
    Then still in AOL Preferences, use the scroll bar to navigate to Filing Cabinet, and click on that.
    Checkmark Automatically delete items in my filing cabinet, and in the contextual menus, below Delete after, select Never.
    Click on OK.
    ali b

  • How stop File Browse item losing value when a validation occurs

    G'Day Apex gurus,
    I am using Apex 3.1.0 and Firefox in an XP PC and have a file browse page item on my page but whenever i experience a validation error on the page, the value entered into this box is lost.
    Every other field on the page retains its entered value, but the file browser item loses its value.
    This is frustrating because the user will have to reselect the file.
    Is there a way to retain the value upon a validation error?
    I appreciate any assistance with this
    Carlos

    Hey creyes,
    I don't think this is possible.
    Because of security implications (scripts setting the value, and then attempting to retrieve files of your computer) the value of the fileupload form field is read only. Therefore you cannot set, or reset the value.
    A solution could be that you make validations with javascript if possible (but keep validations on the database side also!).
    Kind regards,
    Oli

  • Error on clone database, oracle 10g release 2 for windows server 2008

    Hi,
    OS: Windows Server 2008 X64
    Oracle: oracle 10g release r2 for windows server 2008
    An error occurred when creating a database, stop at last step, Screenshot:
    [http://temp.wsria.com/oracle_create_db.png|http://temp.wsria.com/oracle_create_db.png]
    the trace log content:
    [main] [9:56:35:982] [CommandLineArguments.process:563] CommandLineArguments->process: number of arguments = 32
    [main] [9:56:35:982] [CommandLineArguments.process:738] CommandLineArguments->process: Create Database argument is specified
    [main] [9:56:35:982] [CommandLineArguments.process:910] CommandLineArguments->process: template Name argument is specified
    [main] [9:56:35:982] [CommandLineArguments.process:960] CommandLineArguments->process: db name argument is specified
    [main] [9:56:35:982] [CommandLineArguments.process:3074] CommandLineArguments->process: in Operation Type is Creation/GenerateScripts Mode condition
    [main] [9:56:35:997] [CommandLineArguments.process:3298] CommandLineArguments->process: Successfully process command line arguments
    [main] [9:56:36:668] [Host.checkOPS:2055] Inside checkOPS
    [main] [9:56:36:668] [Host.checkOPS:2067] Trying to check cluster existence
    [main] [9:56:36:715] [Library.getInstance:97] Created instance of Library.
    [main] [9:56:36:715] [Library.load:197] Loading orauts.dll...
    [main] [9:56:36:715] [Library.load:203] oracleHome D:\oracle\product\10.2.0\db_1
    [main] [9:56:36:715] [sPlatform.isHybrid:63] osName=Windows Vista osArch=amd64 rc=false
    [main] [9:56:36:715] [Library.load:223] Loading library D:\oracle\product\10.2.0\db_1\bin\orauts.dll
    [main] [9:56:36:715] [Library.load:247] Loaded library D:\oracle\product\10.2.0\db_1\bin\orauts.dll from path=
    D:\oracle\product\10.2.0\db_1\bin
    [main] [9:56:36:715] [Library.load:197] Loading MSVCRT.dll...
    [main] [9:56:36:715] [Library.load:203] oracleHome D:\oracle\product\10.2.0\db_1
    [main] [9:56:36:715] [sPlatform.isHybrid:63] osName=Windows Vista osArch=amd64 rc=false
    [main] [9:56:36:715] [Library.load:223] Loading library D:\oracle\product\10.2.0\db_1\bin\MSVCRT.dll
    [main] [9:56:36:731] [Library.load:247] Loaded library D:\oracle\product\10.2.0\db_1\bin\MSVCRT.dll from path=
    D:\oracle\product\10.2.0\db_1\bin
    [main] [9:56:36:731] [Library.load:197] Loading orawsec10.dll...
    [main] [9:56:36:731] [Library.load:203] oracleHome D:\oracle\product\10.2.0\db_1
    [main] [9:56:36:731] [sPlatform.isHybrid:63] osName=Windows Vista osArch=amd64 rc=false
    [main] [9:56:36:731] [Library.load:223] Loading library D:\oracle\product\10.2.0\db_1\bin\orawsec10.dll
    [main] [9:56:36:731] [Library.load:247] Loaded library D:\oracle\product\10.2.0\db_1\bin\orawsec10.dll from path=
    D:\oracle\product\10.2.0\db_1\bin
    [main] [9:56:36:731] [Library.load:197] Loading orasrvm10.dll...
    [main] [9:56:36:731] [Library.load:203] oracleHome D:\oracle\product\10.2.0\db_1
    [main] [9:56:36:731] [sPlatform.isHybrid:63] osName=Windows Vista osArch=amd64 rc=false
    [main] [9:56:36:731] [Library.load:223] Loading library D:\oracle\product\10.2.0\db_1\bin\orasrvm10.dll
    [main] [9:56:36:731] [Library.load:247] Loaded library D:\oracle\product\10.2.0\db_1\bin\orasrvm10.dll from path=
    D:\oracle\product\10.2.0\db_1\bin
    [main] [9:56:36:731] [Version.isPre10i:189] isPre10i.java: Returning FALSE
    [main] [9:56:36:731] [WindowsSystem.regKeyExists:1006] WindowsSystem.regKeyExists: mainkey= HKEY_LOCAL_MACHINE subkey = Software\Oracle\Ocr
    [main] [9:56:36:746] [WindowsSystem.getCSSConfigType:1163] configType=null
    [main] [9:56:36:746] [Host.checkOPS:2073] cluster existence:false
    [main] [9:56:36:746] [Host.checkOPS:2111] Cluster installed=false
    [main] [9:56:36:902] [InitParamHandler.endElement:506] CustomSGA flag: false
    [main] [9:56:36:902] [InitParamHandler.endElement:507] Database Type: MULTIPURPOSE
    [main] [9:56:36:918] [InitParamHandler.endElement:508] Mem Percentage: 40
    [main] [9:56:36:918] [InitParamHandler.endElement:526] distributing Memory: 13737443328
    [main] [9:56:36:918] [MemoryCalculator.calculateMemory:122] Setting SGA to MAX_SGA 1610612736
    [main] [9:56:36:918] [StorageAttributes.setAttribute:232] IN threadID:1 group#=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:232] IN threadID:1 group#=2
    [main] [9:56:36:918] [StorageAttributes.setAttribute:241] Current threadID=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:248] Current threadID=1 ==> redoGroups[0]=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:258] vRedoGroups:[1]
    [main] [9:56:36:918] [StorageAttributes.setAttribute:288] setAttribute: bExists=false
    [main] [9:56:36:918] [StorageAttributes.setAttribute:232] IN threadID:1 group#=3
    [main] [9:56:36:918] [StorageAttributes.setAttribute:241] Current threadID=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:248] Current threadID=1 ==> redoGroups[0]=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:248] Current threadID=1 ==> redoGroups[1]=2
    [main] [9:56:36:918] [StorageAttributes.setAttribute:258] vRedoGroups:[1, 2]
    [main] [9:56:36:933] [StorageAttributes.setAttribute:288] setAttribute: bExists=false
    [main] [9:56:36:933] [TemplateManager.parseCloneTemplate:1477] See for any transportable datafiles in TemplateManager.....
    [main] [9:56:36:933] [TemplateManager.isInstallTemplate:2178] Selected Template by user:=General Purpose
    [main] [9:56:36:933] [TemplateManager.isInstallTemplate:2185] The Message Id to be searched:=GENERAL_PURPOSE
    [main] [9:56:36:933] [TemplateManager.parseCloneTemplate:1489] create new clone data file for tp file.......
    [main] [9:56:36:933] [Host.setupOIDCommandlineParameters:7184] setupOIDCommandlineParameters:
    [main] [9:56:36:933] [Host.setupOIDCommandlineParameters:7185] m_regWithdirService: false
    [main] [9:56:36:933] [Host.setupOIDCommandlineParameters:7186] m_unregWithdirService: false
    [main] [9:56:36:933] [Host.setupOIDCommandlineParameters:7187] m_updateDirService: false
    [main] [9:56:36:933] [Verifier.processRawConfigFile:3523] StorageType == 0
    [main] [9:56:36:933] [Verifier.setOradataDest:4349] setOradataDest:dfDest=D:\oracle\product\10.2.0\oradata
    [main] [9:56:36:933] [TemplateManager.updateDatafileDestination:1957] updateDatafiles:datafileDir=D:\oracle\product\10.2.0\oradata
    [main] [9:56:36:933] [TemplateManager.updateDatafileDestination:2103] From template, RedoLogGrName=1
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2118] new file name redo01.log
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2103] From template, RedoLogGrName=2
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2118] new file name redo02.log
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2103] From template, RedoLogGrName=3
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2118] new file name redo03.log
    [main] [9:56:36:965] [ProgressOnlyHost.performOperation:162] processRawConfigFile=false
    [main] [9:56:36:965] [Verifier.validateTemplate:1629] StorageType == 0
    [main] [9:56:36:965] [ProgressOnlyHost.performOperation:178] validateTemplate=true
    [main] [9:56:36:965] [OracleHome.isRacEnabled:149] bRacOn = false
    [main] [9:56:36:980] [Verifier.validateTemplate:1629] StorageType == 0
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateRedoLogGroupFileSizes:3083] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateRedoLogGroupFileSizes:3083] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateRedoLogGroupFileSizes:3083] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.getControlfFileSizes:3001] No. of Control files:=3
    [main] [9:56:37:105] [Host.executeSteps:4044] Executing steps....
    [main] [9:56:37:105] [Host.setUpForOperation:2920] setUpForOperation: Mode = 128
    [main] [9:56:37:121] [Host.executeSteps:4186] setupForOperation returned: true
    [main] [9:56:37:121] [Host.createStepSQLInterface:5948] sid =ora10g
    [main] [9:56:37:136] [SQLEngine.initialize:242] Execing SQLPLUS/SVRMGR process...
    [main] [9:56:37:136] [SQLEngine.initialize:270] m_bReaderStarted: false
    [main] [9:56:37:136] [SQLEngine.initialize:274] Starting Reader Thread...
    [Thread-4] [9:56:37:355] [StepContext$ModeRunner.run:2478] ---- Progress Needed:=true
    [Thread-4] [9:56:37:464] [BasicStep.execute:202] Executing Step : CLONE_DB_CREATION_RMAN_RESTORE
    [Thread-4] [9:56:37:464] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-01092
    [Thread-4] [9:56:37:464] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-01034
    [Thread-4] [9:56:37:464] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-03114
    [Thread-4] [9:56:37:464] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-12560
    [Thread-4] [9:56:37:464] [StepErrorHandler.setIgnorableErrors:250] setting Ignorable Error: ORA-01109
    [Thread-4] [9:56:37:464] [BasicStep.configureSettings:304] messageHandler being set=null
    [Thread-4] [9:56:37:464] [BasicStep.execute:202] Executing Step : INSTANCE_CREATION
    [Thread-4] [9:56:37:464] [BasicStep.configureSettings:304] messageHandler being set=null
    [Thread-4] [9:56:37:479] [InitParamAttributes.sortParams:3532] m_sortOn:-1 sortOn:4
    [Thread-4] [9:56:37:620] [OracleHome.isRacEnabled:149] bRacOn = false
    [Thread-4] [9:56:37:667] [Host.noEntryinOratab:5115] Check made for oratab arg passed............
    [Thread-4] [9:56:37:667] [Oradim.getAddEntryCommand:353] AddEntry=[D:\oracle\product\10.2.0\db_1\bin\oradim.exe, -new, -sid, ORA10G, -startmode, manual, -spfile]
    [Thread-4] [9:56:38:899] [Oradim.getEditEntryCommand:422] getEditEntry cmd=[D:\oracle\product\10.2.0\db_1\bin\oradim.exe, -edit, -sid, ORA10G, -startmode, auto, -srvcstart, system]
    [Thread-4] [9:56:39:55] [Oradim.addSidToRegistry:871] oracleHomeKey: SOFTWARE\ORACLE\KEY_OraDb10g_home1
    [Thread-4] [9:56:39:117] [BasicStep.configureSettings:304] messageHandler being set=oracle.sysman.assistants.util.UIMessageHandler@c73f0d8
    [Thread-4] [9:56:39:117] [CloneRmanRestoreStep.executeImpl:217] Instance Creation went fine..........
    [Thread-4] [9:56:39:117] [CloneRmanRestoreStep.executeImpl:224] db_recovery_file_dest=D:\oracle\product\10.2.0\flash_recovery_area
    [Thread-4] [9:56:39:117] [CloneRmanRestoreStep.executeImpl:227] db_recovery_file_dest_size=2147483648
    [Thread-4] [9:56:39:991] [SQLEngine.setSpool:1750] old Spool = null
    [Thread-4] [9:56:39:991] [SQLEngine.setSpool:1751] Setting Spool = D:\oracle\product\10.2.0\db_1\cfgtoollogs\dbca\ora10g\CloneRmanRestore.log
    [Thread-4] [9:56:39:991] [SQLEngine.setSpool:1752] Is spool appendable? --> true
    [Thread-4] [9:56:39:991] [CloneRmanRestoreStep.executeImpl:320] starting with pfile=D:\oracle\product\10.2.0\admin\ora10g\pfile\init.ora

    Check your SQLNET.AUTHENTICATION_SERVICES settings in sqlnet.ora file.
    ORA-28547 : Connection to server failed, probable Net8 admin error
    thanks
    http://swervedba.wordpress.com/

  • Automatic email when an alert occurs (RZ20) from SAP R/3 4.0B

    Hi SAP Experts.
    How do I configure the Automatic email when an alert occurs (RZ20) in the system SAP R/3 version 4.0B (AIX +Oracle) ?
    Best regards.
    Luis Gòmez

    Hi Luiz
    check this out
    Note 429265 - CCMS monitor architecture: Central auto-reaction
    Note 176492 - Automatic email when an alert occurs (RZ20)
    SAP Note 939616 - CCMS auto-reactions: Help with Troubleshooting
    Check SAP Note 617547 - RZ20: Sending alerts as mail and SMS
    https://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/30237989-0901-0010-70a4-944691eb5e52 [original link is broken]
    Setting Up your Central Monitoring [original link is broken]
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/106a4d88-2a36-2c10-549b-dc549d00b8b9
    Read SAP Note 522878 - iSeries: Availability of CCMS Agents
    Regards
    Uday

  • How Can I Release sessions if these are idle long time Automatically.

    Dear Experts,
    How Can I Release sessions if these are idle long time Automatically based on some time frame..
    So that session memory will be free and when i go to reconnect the session then we will have enough memory for our transaction processing.
    I am asking this question because, In my case (Web Load Testing) after completion the processing this parameter still showing 86% Usage.
    so How Can I release it.

    Change value of IDLE_TIME in profile or better create new profile with less IDLE_TIME and assign to users.
    IDLE_TIME Allowed idle time before user is disconnected (minutes)
    Below is example if user is idle for 20 min , he/she will disconnect
    ALTER PROFILE developer LIMIT idle_time 20;
    Cheer,
    Virag Sharma

  • Crystal Report Server - how to release concurrent user license

    Hi all,
    I have a client using Crystal report server 2008, they have 25 concurrent user license.
    On all the services, the timeout properties is using the default 20 minutes timeout.
    If user close a session by pressing the X, instead of clicking Logout, it did not release the license.
    Example, instead of recording 12 active user session, it seems to show 15 user sessions where CR server shows that one of the users has 3 sessions open when in fact he only has one session.
    Is there a way to resolve that?
    From the forum post, I found one of them indicating that there is no solution to this.  Is it true?  I hope I am just missing something.

    There are no session release tools built into XI other than restarting the CMS. If you want you can use SDK code [such as this |http://johnnyye.com/blog/2008/08/12/business-objects-xi-session-removal-tool/]to accomplish a psuedo session management.
    In the current version of CRS the cms or code are the 2 best options. I'd keep a look out for changes in future service packs but I'm not aware of anything specific that will be done.
    Regards,
    Tim

  • How can I avoid re-configuring my outgoing server when travelling?

    I have always "reconfigured" my 'outgoing server' -- the smtp setting under MAIL preferences -- when travelling outside my ISP's service area. (For 12 years with Eudora, and now 4 years with MAIL).  But often at hotels, or in airports, it's not possible to get the info, that is, the smtp designator for the ISP serving the hotel or airport. When unable to get that info, I have to revert to using my home ISP's "webmail" which is clunky, limited, slow, inflexible, and doesn't integrate well with my Apple MAIL later. I hate using it.
    When I AM able to get the local smtp designator info when on the road, it nearly always does the trick and I am able to do all my email work as I would back at my home office.
    However, recently, I stayed with a friend on the west coast, (let's call him Brian) who is something of a Mac expert, but he was unable to confidently give me the smtp designators for his local ISP-- apparently because he never has to change his smtp configuration when on the road!  Like me, he uses two servers, that is, he is connected at his home via the phone company's DSL service using a high speed modem, but he likes to retain the email address he had originally got from an earlier ISP he used, back when he was on dial-up. So he pays that ISP a monthly $5.00 to allow him to continue to use the email address he has had since being their customer way back when.  So we called both of Brian's ISP's and got their smtp designators. However, neither of these, when plugged into my MAIL preferences, would allow me to "send" using Apple MAIL and I was again obliged to use my clunky webmail.
    Now, it seems to me he is being "relayed" (is that the right term?) by the phone company sending outgoing mail over to the older ISP, and the older ISP relays his mail over to the phone company's server to give him his incoming mail. When I am visiting him, this may be to confusing for the smtp configuration in my MAIL.
    I would think not, though, because I have a similar setup: I connect to a cable company modem from my home on the east coast, but my address is the one I got from our local phone company before high-speed became available to us via the cable TV service. When we switched from the phone company's dial-up to the cable company's high- speed, we kept the original email address --which was specific to the phone company-- and we pay $5.00 per month for the privilege. Seems very similar to Brian's setup.
    However, at Brian's, changing the smtp designator doesn't work to allow me to send emails from Apple's MAIL program.
    Brian tells me he doesn't have to do this smtp change when he travels, with his Apple MAIL.  He doesn't know why I do it, nor why I should have to.  I suspect, that unknown to him,  his ISP has some kind of setup whereby his smtp designation is a sort of "universal" outgoing server designation, and his outgoing emails are accepted no matter which ISP he is using when away from home. And I think my MAIL configuration must be incompatible with that. This is just my suspicion.
    So my questions are:
    1. why doesn't Brian have to re-configure his smtp outgoing server when he travels? and...
    2. how can I get that kind of universal "email send-ability" when I travel, and not have to be challenged with having to re-do my outgoing server when travelling, using Apple's MAIL?
    Any insights will be most gratefully received!!!!
    PS I'm using Snow Leopard on MacBook 10.6.8; I think Brian is using Leopard on a 15-in Powerbook.

    Many email providers allow you to send from outside their network if you set up authentication to their servers in your outgoing mail server setup. You may wish to confirm this with your email provider, but you can just try this:
    1) Go to the Accounts preference in Mail
    2) Select your email account
    3) On the Account Information tab, locate the "Outgoing Mail Server" section and pull the menu down to "Edit SMTP Server list"
    4) Select the appropriate outgoing server and go to the Advanced tab
    5) In the Authentication pulldown, select "Password" and enter in your email account ID and password
    6) Click all the applicable "OK" buttons to close it all up and save the information.
    That may work with your email provider, or they may have additional settings needed such as "Use Security Sockets Layer (SSL)". Your provider should be able to tell you what specific settings you need if the basic user name and password don't work.
    Regards.

  • How do I stop my itunes from saying my session has timed out when i'm trying to download a song

    How do I stop my itunes from saying my session has timed out when i'm trying to download a song

    What troubleshooting steps have you tried so far?
    Basic Troubleshooting Steps when all else fails
    - Quit the App by opening multi-tasking bar, and swiping the App upward to make it disappear.  (For iOS 6, holding down the icon for the App for about 3-5 seconds, and then tap the red circle with the white minus sign.)
    - Relaunch the App and try again.
    - Restart the device. http://support.apple.com/kb/ht1430
    - Reset the device. (Same article as above.)
    - Reset All Settings (Settings > General > Reset > Reset All Settings)
    - Restore from backup. http://support.apple.com/kb/ht1766 (If you don't have a backup, make one now, then skip to the next step.)
    - Restore as new device. http://support.apple.com/kb/HT4137  For this step, do not re-download ANYTHING, and do not sign into your Apple ID.
    - Test the issue after each step.  If the last one does not resolve the issue, it is likely a hardware problem.

Maybe you are looking for

  • Can't edit iPhone 4 photos in iPhoto

    I posted something similar under iPhoto then realized it might be an iPhone 4 problem. Suggestions would be appreciated: We are unable to edit photos in iPhoto, but ONLY those photos taken with new iPhone 4. We can upload them to iPhoto, but when we

  • Has anyone used Aperture 2.0 with 8800GT?

    Has anyone used Aperture 2.0 with the new 8800GT? I'm about to order a new Mac Pro and wonder if Aperture will get a speed boost with the 8800GT over the HD 2600XT. I've read many times that Aperture is very GPU dependent, but then I've also read, on

  • Saving jpegs or pdfs from aperture completely blown out since upgrade

    since the upgrade to mavericks the saving on Aperture doesnt perform. Highlights are blown out beyond recognition.  Saving books ( pdfs to jpegs) - complete nightmare, can barely see the photo Saving a jpeg - doesnt work - again highlights blow out p

  • Cannot Duplicate a CD

    Hi Folks, I'm trying to duplicate a (audio) CD using the Disk Utility. I put the source CD into the optical drive and followed these instructions: 1. Insert the CD or DVD disc in your computer's optical drive and select it in the list of disks and vo

  • Problem with FMR playback in filmstrip -mode

    Is it normal when I try to playback full motion recording in filmstrip mode with timeline it plays fine, but when I pause playback (for eg pressing space) playback position reverts back to frame 0 aka begining. This makes adding captions very time co