Orphaned Sessions in 10.1.2

Has anyone else noticed a lot of orphaned sessions in 10.1.2? I will see in OEM that the session is using 0% CPU or sometimes 25% CPU (4 CPU server). Checking the database will show the session either a) does not exist or b) has been idle for a very long time. I have my idle time out set to 15 minutes but these sessions will be idle for over an hour.
I've contacted these users and found that they typically had a problem in Discoverer and their browser locked up. They then closed the application and started over again with a new session.
I have to go to the OS and kill the PID that is identified through OEM. It always seems to be for these sessions that are using 0% or 25% CPU in OEM.

Hi John
Closing IE is exectly the same as clicking the X at the top right corner of the screen. The session on the server will be left hanging.
If this is causing you a lot of issues I would recommend you reduce the time out setting.
I hope this helps
Best wishes
Michael Armstrong-Smith
URL: http://learndiscoverer.com
Blog: http://learndiscoverer.blogspot.com

Similar Messages

  • Orphan sessions - end of communication channel

    Dear Colleagues,
    We are facing with a server crash or are forced to shutdown and restart the db server on monthly basis approx. and we believe that this problem is related to orphan sessions created by users connected through application servers (remote desktop connection - RDC) and when our off-site link drops these sessions exists on the db and when the connection re-establishes new connections are formed and this kept on going untill a crash occurs or we are forced to shutdown the db - which also ends in a crash after giving a message 'End of communication channel' - to control the extra sessions from being created we tried setting the retention time of a connection to 5 minutes but this seems to be adding on to the problem as well. Before proceeding any further let me apprise you on our environment:
    Windows 2000 Advanced server running on ML-570 dual processor
    Oracle 9.0.1.1.1
    DB Users: 350-300 approx. concurrent sessions
    Front end application s/w are developed in VB 6 and are deployed on "Unisys ES 7000 Orion 230" on 3-4 partitions each of 4-6 processors - These is used as our application servers.
    We believe this started roughly after we gave access to our off-site offices because we have 1 GB LAN access at the main site and the users are given thin clients (HP thin clients) and this problem existed nevertheless, restart of db server once in a while - which is something every windows user does and we all know.
    Can any body please tell us is this a orphan session problem and its remedy? or its something else - do we need an application server to manage the transactions or any thing which can help in the resolution of the problem.
    You help is appreciated as always.
    Take care.
    QJ

    Try tracing the drop user statement. Then you'll see exactly what's happening very near the point where the socket is closed. Repeating the test with varying input parameters--I know there are many of them and that's precisely the point--for a few iterations will produce enough trace data that you'll be better equipped to decide on a reasonable course of action.
    alter session set events '10046 trace name context forever, level 12';
    drop user hard_to_kill;
    The resulting trace data will tell you if you have to go so far as admin level sql net tracing.

  • How to clean orphan session in WL 7

    Why Weblogic 7 can't clean orphan sessions ?
    I have one J2EE application using Struts 1.1. On both jsp and java code, cleaning session was carefully coded. However, some users just close browser and open session remains in WebLogic. In web.xml, session-timeout
    is 30.
    I have noticed orphan session is quite serious in WL7. Is there a method to force-clean it ?
    Thanks,
    Alex Lin

    ALTER SYSTEM KILL SESSION 'X,X';
    Will raise "ORA-00030 User session ID does not exist."

  • Monitoring orphan sessions on db tier

    Hi,
    Is there a way to monitor orphan sessions on db tier? does any body have script to monitor and kill orphan sessions? appreciate your replies.

    user738145 wrote:
    Is there a way to monitor orphan sessions on db tier? does any body have script to monitor and kill orphan sessions? appreciate your replies.This is not really an Oracle problem. If the client does not say bye-bye to Oracle via the OCI (as a well behaved client should), the next layer deeper down needs to tell Oracle that.
    That means that the network layer (on the client side) needs to send a TCP packet to tear down the client-server network connection (done by setting the FIN/RSET bit in the packet header).
    Now if that network layer does not do that, the Oracle server process will not know the client is gone - and patiently sits idle waiting for the client to send instructions to the server to execute.
    The Oracle server process will only discover that the client is no longer there when it attempts to use the network connection to the client, from its side. A network connection that is deemed to be still valid by the protocol stack in the kernel of that server platform.
    There is a method called DCD (Dead Connection Detection) that can be configured in SQL*Net on the server - that instructs the server process to every now and then check the network link to the client and to determine if the connection is still valid and whether the client is still there and responding. See the SQLNET.EXPIRE_TIME SQL*NET parameter.

  • Opendocument call creating orphan sessions

    Hi,
    We are using opendoc to link up reports from a java based web app.
    The webapp creates a session and then creates a token off the session. getDefaulttoken() is being used to get the token.
    The token is being used by the opendoc call to view a report.
    There is a independent thread created in the app which logs off the session after the opendoc call has been made.
    We are seeing that when the opendoc call is made it creates another session and it's being used to view the report.
    Thus after the opendoc call there are two sessions created in the system. Our background threads goes and cleans up the first session but the session created by open doc is still there and can't be accessed by the java app for clean up.
    Is this expected behavior of opendoc? is there any parameter which needs to be updated to make sure opendoc doesn't create a new session?
    Thanks,
    Sumit

    Following is the code for url reporting with Opendocument:
    <%@ page import="com.crystaldecisions.sdk.exception.SDKException" %>
    <%@ page import="com.crystaldecisions.sdk.framework.CrystalEnterprise" %>
    <%@ page import="com.crystaldecisions.sdk.framework.IEnterpriseSession" %>
    <%@ page import="com.crystaldecisions.sdk.framework.ISessionMgr" %>
    <%@ page import="com.crystaldecisions.sdk.occa.infostore.IInfoStore" %>
    <%@ page import="com.crystaldecisions.sdk.occa.security.ILogonTokenMgr"%>
    <%
    try{
              String systemName = "admin-09db244eb";
              String userName = "Administrator";
              String password = "";
              String authType = "secEnterprise";
              IEnterpriseSession enterpriseSession=null;
              if (enterpriseSession == null)
              ISessionMgr enterpriseSessionMgr = CrystalEnterprise.getSessionMgr();
               enterpriseSession = enterpriseSessionMgr.logon(userName, password, systemName, authType);
              ILogonTokenMgr logonTokenMgr = enterpriseSession.getLogonTokenMgr();
              String defaultToken = logonTokenMgr.createWCAToken("",20,10);
               response.sendRedirect("http://admin-09db244eb:8080/OpenDocument/opendoc/openDocument.jsp?iDocID="6011"&sRefresh=Y&token="+defaultToken);
    catch(Exception e){
    Make the necessary changes in the code(ex: cmsname,iDocID,etc.) accordingly.
    Regards,
    Anuj

  • Detect orphaned sessions for which client is terminated

    Hi,
    We have REST service. Client will establish session to service. There is max num of sessions limit (10). If I kill client app 10 times, 11th time I will not be able to establish connection to service as max sessions reached. This is because previous sessions
    are still active and will be active for session time out period.
    Now how to know such kind of sessions for which client app is killed. Is there any setting in IIS for this?
    Any inputs on this will be helpful.
    Thanks.
    Regards,
    Harish
    Harish

    Hi,
    For this situation, you could try to disable session state in IIS:
    Open IIS Manager and navigate to the level you want to manage. For information about opening IIS Manager, see
    Open IIS Manager (IIS 7). For information about navigating to locations in the UI, see
    Navigation in IIS Manager (IIS 7).
    In Features View, double-click ASP.
    On the ASP page, under Services, expand
    Session Properties.
    Select False from the Enable Session State drop-down list.
    In the Actions pane, click Apply.
    Besides, for more information, you could refer to:
    https://msdn.microsoft.com/en-us/library/ee377050(v=bts.70).aspx
    http://blogs.msdn.com/b/david.wang/archive/2006/04/12/howto-maximize-the-number-of-concurrent-connections-to-iis6.aspx
    And for more detailed information about IIS, it's recommended that you could ask the IIS issues in IIS Forum:
    http://forums.iis.net/
    Regards

  • Kill Orphan Essbase Session - Urgent

    Hi Gurus
    Well, we are facing an issue that if user not log off properly from Planning during data reterieval from Essbase then on next log in Planning takes too much time to log back to the Form. I think there are orphan sessions for that users which create problem. If I'm right the how can i kill those sessions as I'm trying to kill them forcefully from Eas Console but no luck. Please help.
    Thanks in Advance
    SNK

    let me know, if user no signed off properly from Planning during data fetching from essbase, did the session remain there for that user? and what will happen if user signed in again to that form?Yeah Session will be there if the user has not signed off properly, it will be automatically signed off when the user session time out limit is reached.
    Try: log into planning application by user A and user B simultaneously.
    go to Admininstration -> View Statistics, you will see two session,
    Close the explorer for User A,
    From the session of user B, you will still see the session of user A, unless you logging again and log out properly or the session times out for that user.
    For more on that check:
    http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/stats.html
    Cheers..!!!

  • POWL 'Query Name is already open in another session'

    Hi there,
    Our users are constantly getting the following error message when using POWL's in the Portal.
    Query <Name> is already open in another session' (POWL 016)
    The error occurs when a user tries to refresh a query and the query is locked in another session (ENQUEUE_EPOWL_QUERY_EDIT Exception foreign_lock).
    There are various root causes to why this error happens, system, application, communication etc. The one I am seeking help on occurs when the user abruptly terminates the browser session (forced or unforced) and the orphaned session is unable to close properly leaving the POWL query locked.
    We are currently informing the users to
    1.) close all windows and reload the worklist.
    and in certain circumstances
    2.) log off and log on again
    The above workaround doesnt always solve the problem. We are reluctant to give users access to SM12.
    Has anybody encountered something similar, if so were their specific settings, notes, code etc. which needed to be implemented?
    Cheers
    John P

    Try the following steps
    Please implement the note 1836401 and the prerequisites 1873487,1902580 .
    Identify the POWL Query name and set the refresh type as: 'refresh on every LIST VISIT'.
    Important: Run the report POWL_D01 and remove the result list of your POWL
    Application ID, it#s very important because the cache would still contain the old refresh type and will not recognize the new refresh type, please run the report at first for one user ant test the behaviour, if it works run it for all other user
    Pass the application parameter REFRESHA with value X to your POWL application. After that retest your issue, it should work. if not implement the note 1975395 and its prerequisites and test again
    Best regards,
    Robert.

  • Hanging Sessions in SAP ITSmobile/Standalone SAP ITS Gateway

    Hi,
    We have recently implemented SAP ITSmobile/Standalone SAP ITS gateway 6.20 (6200.1035.9507.7, build 1121051 - Single host) connected to LXE RDT device for warehouse operation.
    In warehouse forklift operators quite often lose connection to Wireless access point,which is creating orphan sessions in background and not getting cleared sometimes from the system, we have  to manually Clear(kill) the sessions .
    I have introduced following parameters in SAP ITS instance in ALL SERVICES.  pls let me know, is there any parameter need to be enforced to clear the hanging session.  Apprecitete your help.
    Parameters in SAP ITS Gateway Instance:
    ~disconnectonclose = 1
    ~timeout = 30
    ~usertimeout = 0
    Also, I see following log entries in access log, what could be the reason for ???? in the access log ?
    2011-07-11T16:23:03.431 00, s000000000A83DD00, IP 10.64.44.186, *zzits_r3_sp, , 2011-07-11T16:25:06.507 00, s0000000000000000, IP ???.???.???.???, command AgateShmGet:Proc:ITP 2011-07-11T16:25:06.523 00, s0000000000000000, IP ???.???.???.???, command AgateShmGet:Proc:ITP 2011-07-11T16:25:06.523 00, s0000000000000000, IP ???.???.???.???, command AgateShmGet:Proc:ITP 2011-07-11T16:25:06.523 00, s0000000000000000, IP ???.???.???.???, command AgateShmGet:peak:ITP 2011-07-11T16:25:06.539 00, s0000000000000000, IP ???.???.???.???, command AgateShmGet:Thrd:ITP:0 2011-07-11T16:25:06.554 00, s0000000000000000, IP ???.???.???.???, command AgateShmGet:Sess:ITP:0
    Regards,
    Soma

    Hello Soma,
    With the ITS 6.20 you can use the ~timeout parameter to change the session timeout in minutes.  Basically the value, in minutes, will determine when the session terminated after that period of inactivity.  This can be changed on a per service level.  So if you think the wireless connection is lost every 10 minutes and the users should have activity every 5 minutes then it is safe to change the ~timeout value to 10.
    In the access.log the question marks (?) are when a request is made before there is user information, that would mostly be the logon page.  The entries with "command" in it are requests from the ITS ADM instance.
    Edgar

  • URGENT : Releasing locks aquired after the session ubruptly terminated

    Hi everybody,
    When a record is edited the record gets locked.
    If the session is ubruptly terminated (PC switched off, Network down or something like that) before the edited record is commited or rolled back and if the same record is accessed after loging on once agian "Cannot reserve record " message is displayed.
    When will such locks get released?
    Is there any way to make the record editable (releasing locks programatically)?
    Thanks
    Brijesh

    The old session should clean up given time - How, depends of course if this is a Client Server Form or a Web Deployed Form.
    If it is a web deployed form then the FORMS60_TIMEOUT (or FORMS90_TIMEOUT) will be used to determine how long to wait before cleaning up the process and releasing the locks.
    If this is client server then it's a database configuration thing.
    There is no way to manually release the locks of an orphaned session in code. The DBMS_LOCK package does have a way of releasing a lock, but I think this is only locks that have been taken out by dbms_lock itself, not a "normal" lock.

  • Maximum Internal Sessions

    I have a module pool that is designed to allow users to input budget data.  As part of the functionality of these screens, there is a button that the user can click to review the data that he just input.  This data is being displayed via ALV grid.
    In the ALV grid, I have a hot-key defined to take the user back to a specific point in the module pool, editing the data that was clicked on from the ALV grid.
    The problem is that I am getting "Maximum Internal Sessions" error.  I understand why, but cannot figure out a resolution.
    From the module pool, I am doing a SUBMIT ALVPROGRAM.  (with no return).
    From the ALV Grid program, I am doing a CALL TRANSACTION. (to get back into my module pool at a specific point.).
    Is there a way to cancel or exit an internal session so that I do not leave all of these 'orphaned' sessions after I return from the ALV Grid program?

    Hi,
    By calling the transaction with "CALL TRANSACTION ..." statement, you keep the current transaction's program data and open a new internal session. That why getting error as maximum internal sessions.
    The solution is to use "LEAVE TO TRANSACTION ..." which ends the current transaction session, and then opens the new session.
    Thanks,
    SMITA
    Edited by: Smita Gupta on Mar 4, 2009 6:17 AM

  • What is a stale session

    Hi,
    Can anybody explain me about stale sessions..How to identify them and also how to kill them..
    Thanks in advance....

    Yeah - a more correct term would be "+orphaned sessions+" as the session is there to serve a client that no longer exists.
    @user12657832:
    I would not call the term "+stale+" sessions relevant to Oracle. There are 2 basic session states in Oracle.
    - active: server process is busy servicing (executing) a client request
    - idle: the server process is waiting for a client request
    A session can last a few seconds.This is typical in a thin-client architecture where the clients are stateless.
    A session can last several days. For example, a developer using TOAD and simply keeping the client open and running on his PC for several days, without closing it down and reconnecting.
    There is however an issue at the wire protocol level. When the client crashes, it does not send a FIN packet down the wrire to tear down its network connection with the server. So the server session is unaware that the client crashed. The IP stack on its side does not inform the server session that the network socket handle it owns is no longer valid. It will only discover that when it attempts to use that socket handle to communicate with the missing client.
    It has no reason to do that however, as it is waiting for the next request from the client.
    So in such a case, one gets orphaned sessions. An idle session that waits on a non-existing client.
    There's no way to accurately identify such sessions in Oracle. You can determine the life span of a session and if it is older than 2 days for example, consider it as an orphan and kill it. But its client may still exist. Its network connection between client and server may still be valid.
    There are ways to deal with such server sessions (and this is a problem with all tcp based servers). In Oracle it is called DCD or Dead Connection Detection. This forces the server session to send a ping over its socket handle to the client at regular intervals. And the client to respond with a pong. Should this fail, then the network connection is no longer valid and the server session can terminate.
    However, due to the very robust nature of the tcp protocol (designed by the US military to still provide communication over large pieces of broken communication infrastructure in a post nuclear scenario), it can in some cases take many minutes for the network layer to discover that the client is not responding and no longer reachable.

  • 'screen' no longer works in Yosemite - Resource Busy

    For many years I have used USB serial devices to connect to external machines, using commands like
    $ screen /dev/tty.usbserial-FTFZXCV 115200
    Since the upgrade to Yosemite, this no longer works.  The screen commands give an error
    'screen cannot open /dev/tty.usbserial-FTFZXCV for R/W - Resource Busy'
    There was a similar question from April but that talked about using lost to identify an orphan session. 
    $ lsof | grep usbserial   # no output
    $ pgrep screen # no output.
    The permission seems sensible:
    $ ls -l /dev/tty.*
    crw-rw-rw-  1 root  wheel   18,   8 21 Nov 19:42 /dev/tty.Bluetooth-Incoming-Port
    crw-rw-rw-  1 root  wheel   18,   6 21 Nov 19:42 /dev/tty.Bluetooth-Modem
    crw-rw-rw-  1 root  wheel   18,   0 21 Nov 19:42 /dev/tty.usbserial-FTZXCV

    From Sony:
    In regard to your inquiry, compatible drivers for MAC OS Yosemite will be released by the end of this year.
    If needed, please contact me at the phone number below.
    Regards,
    SONY

  • CS6 AI Cannot open a file saved from CS5 AI

    Had tried to save and rename the file and place in the local C: harddrive, filename only English letters. Doesn't work.
    Had uninstalled completely the CS6 Master collection and CC cleaner tools and reinstall the CS6 again, but problem still there.
    Using Win8.1 Pro 64bit desktop at home.
    Acrobat X Pro can open the AI file !
    I am going to reinstall back the old version CS5 Design Premium to keep my work going on.
    Is there a solution for this problem up to now ?
    Below are the message from the log file after clearner
    Gen_WWCombined-en_US-20121017_1230
    [Thu Feb 26 20:00:36 2015] Please enter (y) for Yes or (n) for No. ... >>
    [Thu Feb 26 20:00:40 2015] Choose from one of the following options to clean up :
    [Thu Feb 26 20:00:40 2015] 1.  All
    [Thu Feb 26 20:00:40 2015] 2.  Adobe Flash Player 10.2
    [Thu Feb 26 20:00:40 2015] 3.  Creative Cloud 2014 , Creative Cloud & CS6 Products
    [Thu Feb 26 20:00:40 2015] 4.  Creative Cloud 2014 only
    [Thu Feb 26 20:00:40 2015] 5.  Creative Cloud only
    [Thu Feb 26 20:00:40 2015] 6.  CS6 only
    [Thu Feb 26 20:00:40 2015] 7.  CS5-CS5.5-CS6
    [Thu Feb 26 20:00:40 2015] 8.  CS5-CS5.5
    [Thu Feb 26 20:00:40 2015] 9.  CS3, CS4
    [Thu Feb 26 20:00:40 2015] 10.  Adobe Id credentials
    [Thu Feb 26 20:00:40 2015] 11.  Quit
    [Thu Feb 26 20:00:40 2015] Choice :>
    [Thu Feb 26 20:00:43 2015] User selected: All
    [Thu Feb 26 20:00:43 2015] Opened DB connection with path: C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Thu Feb 26 20:00:43 2015] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Thu Feb 26 20:00:43 2015] Opened DB connection with path: C:\Program Files (x86)\Common Files\Adobe\caps\caps.db
    [Thu Feb 26 20:00:43 2015] Orphan session will be removed : adbeadbeadbeadbeadbeadbeadbeadb
    [Thu Feb 26 20:00:43 2015] ..
    [Thu Feb 26 20:00:43 2015] Removing entries from the installer database
    [Thu Feb 26 20:00:43 2015] Updated tsInstalled status to 0 for removal from 2 for installation in the table ribs_collection_paylaod for session adbeadbeadbeadbeadbeadbeadbeadb
    [Thu Feb 26 20:00:43 2015] Updating installState
    [Thu Feb 26 20:00:43 2015] Removing content of Product : AdobeColorVideoProfilesCS CS4, Version : 2.0
    [Thu Feb 26 20:00:43 2015] Warning: Payload with ID : {4F3CE025-D60B-4E6B-8D39-B04CD3769008} does not have an InstallDir value. Deletion of patch files (if any) may not happen.
    [Thu Feb 26 20:00:43 2015] Deleting the paylaod: {4F3CE025-D60B-4E6B-8D39-B04CD3769008} from the table ribs_payload and other associated tables for payloads
    [Thu Feb 26 20:00:43 2015] Removing content of Product : AdobeColorVideoProfilesAE CS4, Version : 2.0
    [Thu Feb 26 20:00:44 2015] Warning: Payload with ID : {8D71D024-447A-4B6F-A9CD-58443FFC43C4} does not have an InstallDir value. Deletion of patch files (if any) may not happen.
    [Thu Feb 26 20:00:44 2015] Deleting the paylaod: {8D71D024-447A-4B6F-A9CD-58443FFC43C4} from the table ribs_payload and other associated tables for payloads
    [Thu Feb 26 20:00:44 2015] Removing content of Product : AdobeColorCommonSetRGB, Version : 2.0
    [Thu Feb 26 20:00:44 2015] Warning: Payload with ID : {AB8E4534-C573-4CC9-BA6A-76DD14055510} does not have an InstallDir value. Deletion of patch files (if any) may not happen.
    [Thu Feb 26 20:00:44 2015] Deleting the paylaod: {AB8E4534-C573-4CC9-BA6A-76DD14055510} from the table ribs_payload and other associated tables for payloads
    [Thu Feb 26 20:00:44 2015] Removing content of Product : AdobeMotionPicture CS4, Version : 2.0
    [Thu Feb 26 20:00:45 2015] Warning: Payload with ID : {D798A6B1-4964-4B96-A032-3E29C8344C2F} does not have an InstallDir value. Deletion of patch files (if any) may not happen.
    [Thu Feb 26 20:00:45 2015] Deleting the paylaod: {D798A6B1-4964-4B96-A032-3E29C8344C2F} from the table ribs_payload and other associated tables for payloads
    [Thu Feb 26 20:00:45 2015] finished updating installState
    [Thu Feb 26 20:00:45 2015] Deleting session: adbeadbeadbeadbeadbeadbeadbeadb from ribs_collection and other associated tables
    [Thu Feb 26 20:00:45 2015] Updating caps schema pcd_meta to 2 if earlier version is less than 2
    [Thu Feb 26 20:00:45 2015] ..
    [Thu Feb 26 20:00:45 2015] Entries from the installer database have been removed
    [Thu Feb 26 20:00:45 2015] Sessions folder will be removed.
    [Thu Feb 26 20:00:45 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:45 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:45 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:45 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:45 2015]
    [Thu Feb 26 20:00:45 2015]
    [Thu Feb 26 20:00:45 2015] List of products installed on this machine
    [Thu Feb 26 20:00:45 2015] Listing products for cleanup:
    [Thu Feb 26 20:00:45 2015] Please enter the option number of the product you wish to remove; enter (q) to quit ... >>
    [Thu Feb 26 20:00:50 2015] Are you sure you want to clean all the listed products and associated files?
    [Thu Feb 26 20:00:50 2015] Type (y) to confirm and remove or (n) to quit ... >>
    [Thu Feb 26 20:00:55 2015] Please wait for Adobe Creative Cloud Cleaner Tool to finish........
    [Thu Feb 26 20:00:55 2015] :: Cleaning-up left over inventories ::
    [Thu Feb 26 20:00:55 2015] Inventory: 'uninstallts', Type: RIBS, Action: Delete
    [Thu Feb 26 20:00:55 2015] Atleast one Non-RIBS Inventory : False, Atleast one AAMRef: False
    [Thu Feb 26 20:00:55 2015] ::Start:: Removing AUM contents
    [Thu Feb 26 20:00:55 2015] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:AdobeAAMUpdater-1.0
    [Thu Feb 26 20:00:55 2015] Exception during deleting key : (2, 'RegDeleteValue', 'The system cannot find the file specified.')
    [Thu Feb 26 20:00:55 2015] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:ADOBE_UPDATER_STARTUP_UTILITY
    [Thu Feb 26 20:00:55 2015] Exception during deleting key : (2, 'RegDeleteValue', 'The system cannot find the file specified.')
    [Thu Feb 26 20:00:55 2015] Deleting scheduled task : AdobeAAMUpdater-1.0-SamHomePC-Sam
    [Thu Feb 26 20:00:55 2015] Executing command: schtasks /delete /TN "AdobeAAMUpdater-1.0-SamHomePC-Sam" /F
    [Thu Feb 26 20:00:55 2015] ERROR: The system cannot find the file specified.
    [Thu Feb 26 20:00:55 2015] Deleting scheduled task : AdobeUpdater Task-SamHomePC-Sam
    [Thu Feb 26 20:00:55 2015] Executing command: schtasks /delete /TN "AdobeUpdater Task-SamHomePC-Sam" /F
    [Thu Feb 26 20:00:55 2015] ERROR: The system cannot find the file specified.
    [Thu Feb 26 20:00:55 2015] ::Finish:: Removing AUM contents
    [Thu Feb 26 20:00:55 2015] ::Start:: Removing OOBE
    [Thu Feb 26 20:00:55 2015] Executing command "taskkill /F /FI "IMAGENAME eq AAM Updates Notifier.exe""
    [Thu Feb 26 20:00:55 2015] INFO: No tasks running with the specified criteria.
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] ::Finish:: Removing OOBE
    [Thu Feb 26 20:00:55 2015] Removing content of Product : CS5Installer, Version : CS5
    [Thu Feb 26 20:00:55 2015] Deleting file : C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Thu Feb 26 20:00:55 2015] File does not exist: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] LOG FILE SAVED TO: C:\Users\Sam\AppData\Local\Temp\Adobe Creative Cloud Cleaner Tool.log
    [Thu Feb 26 20:00:55 2015] Adobe Creative Cloud Cleaner Tool completed successfully
    [Thu Feb 26 20:00:55 2015]
    [Thu Feb 26 20:00:55 2015] *-*-*-*-*-*- ::START:: - SUMMARY OF Warnings -*-*-*-*-*-*
    [Thu Feb 26 20:00:43 2015] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Thu Feb 26 20:00:45 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:45 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:45 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:45 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] Warning: Failed to remove file,folder trying again
    [Thu Feb 26 20:00:55 2015] Warning: Failed again to remove file,folder
    [Thu Feb 26 20:00:55 2015] *-*-*-*-*-*- :: END :: - SUMMARY OF Warnings -*-*-*-*-*-*
    [Thu Feb 26 20:00:55 2015] ---------------------------------------------------------
    [Thu Feb 26 20:00:55 2015] *=*=*=*=*=*=*=*=* :: End Session :: *=*=*=*=*=*=*=*=*=*=*
    [Thu Feb 26 20:00:55 2015] ---------------------------------------------------------

    Hi Peter,
    I'm guessing it might have been a network corruption problem. She brought in her laptop, we made another .idml file and loaded it to a USB stick, then transferred it to my computer. The file opened just fine. And yes, she had pasted all her images, so we have her collecting the bits and pieces for me to review and relink everything. I believe I have the patch, but will double-check. Thanks!

  • RFC Call from BSP Page

    Hello All,
    I have a standard SAP BSP application(which is statefull, but does not have a script for handling WINDOW closing EVENT , for removing the orphaned sessions, also I cannot add that code now as it's standard).
    In one of the bas page I'm calling an RFC function module to a second R/3 system.
    When I call the RFC and after doing some processing if I close the application( Please note that underlying session is still active), I still can see the RFC Login in 2nd system.
    Is there any way to remove the RFC connection immediately after the RFC call? so that there is no persistent RFC connection, and a connection will be established only on demand.
    Regards
    Geogy

    Hi Geogy,
    Please use the FM "RFC_CONNECTION_CLOSE" after the corresponding RFC call with the same destination.
    This will close the connection opened by the previous call.
    Thanks
    Madhan

Maybe you are looking for

  • Any guidelines using RSAL_LOG_WRITE to post message in the application log

    Hi SDN! I've programmed a rather complex extractor. As most you will know, the real test is when the extractor goes live in productions;-) So in order to be able to check if everything works as designed - I've customized the extractor in order to pos

  • The software Sticky Password Doesn't work.

    the plugin Sticky Password doesn't work in Firefox 37.

  • DISPLAY NAME, BLOCK DIAGRAM

    I am new to LabView and our teacher has given us a very small assignment in which we have to create a program that displays a name that I have input.  I am also required to show him the block diagram.  Any help plz?

  • The latest version dosen't support my QuickTime?

    After I updated my AE CC 2014,it says I don't have QT installed. But even if I reinstall the latest QT, it doesn't work! WHY? Reinstalling the last version works.

  • Deprecation of Persistence API in ME2.1 SP03

    Hello together, I am coding an application with persistence functionality. I am following the example PersistenceSimple from the Mobile Development Kit (MDK):ME2.1 SP03, 4th revised Edition The example uses the class "Transaction" for persistence. Bu