Conflict resolution manager having which spid at the database server.

Folks,
I've come across a situation where in one of the
1.SID was generating high redo SID - 1098 .
2.when i checked what this sid was doing - i figure out that it belongs to a report set, still having the sid at the database server.
3.The client process id(12041) of thie SID(1098) is shown as the spid shown in the system column at system administrator --> concurrent manager --> Administer --> Highlight conflict resolution manager --> click processes.
4. I understand that we need to grep for the osporcess "ps" using spid and not using "client process id" (process from v$session). Please clarify.
5.when I grep for 10241 it is indeed pointing to CRM process. but when I query for spid (12055) associated with sid (1098) it points to a Reports set which completed error and generating some kind of redo ( which triggered all the above questions).
6.Now the question is should we be checking for SPID (120550) associated with SID(1098) which says (LOCAL=NO) and safe to kill. as the status of the SID says inactive, though the last_call_et is just showing 1.
Thanks in advance.

Run the queries in these docs to determine the database session details of a running concurrent program.
bde_request.sql - Process and Session info for one Concurrent Request (11.5) [ID 187504.1]
How to Find Database Session & Process Associated with a Concurrent Program Which is Currently Running. [ID 735119.1]
How to Retrieve SID Information For a Running Request [ID 280391.1]
If the request has completed and you suspect the database sessions is still active, edit the query and correct the status of the request (from running to completed).
Thanks,
Hussein

Similar Messages

  • Conflict Resolution Manager  failed to start

    Sawwan,
    When ever i amt rying to start MT except CRM all other concurrent managers are starting, Here is error information.
    Application Object Library: Concurrent Processing version 11.5
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    Server concurrent manager started (NODE=ORAAPP11) : 24-DEC-2009 16:35:02
    Conflict Resolution Manager started with concurrent process id 320104
    ORA-04098: trigger 'APPS.OBTPA_FND_CONCURRENT_PROGRAMT2' is invalid and failed re-validation
    update fnd_concurrent_programs set iprog_id=0 where application_id> -1 and concurrent_program_id> -1
    An error occurred in routine rxcrm_iprog_init.
    ~
    When i checked 'APPS.OBTPA_FND_CONCURRENT_PROGRAMT2' is invalid, what is the relation b/w CRM and Object.
    SQL> select object_name,status,owner from dba_objects where object_name like 'OBTPA_FND_CONCURRENT%';
    OBJECT_NAME STATUS OWNER
    OBTPA_FND_CONCURRENT_PROGRAMT2 INVALID APPS
    OBTPA_FND_CONCURRENT_PROGRAM_T INVALID APPS
    SQL> col owner for a10
    SQL> col object_type for a10
    SQL> select object_name,status,owner,object_type from dba_objects where object_name like 'OBTPA_FND_CONCURRENT%';
    OBJECT_NAME STATUS OWNER OBJECT_TYP
    OBTPA_FND_CONCURRENT_PROGRAMT2 INVALID APPS TRIGGER
    OBTPA_FND_CONCURRENT_PROGRAM_T INVALID APPS TRIGGER
    SQL> show user
    USER is "APPS"
    SQL> alter trigger APPS.OBTPA_FND_CONCURRENT_PROGRAMT2 compile;
    SQL> show errors
    No errors.
    SQL> set long 1000000
    SQL> set pages 1000
    SQL> /
    DBMS_METADATA.GET_DDL('TRIGGER','OBTPA_FND_CONCURRENT_PROGRAMT2','APPS')
    CREATE OR REPLACE TRIGGER "APPS"."OBTPA_FND_CONCURRENT_PROGRAMT2"
    AFTER UPDATE OR DELETE
    ON fnd_concurrent_programs
    FOR EACH ROW
    DECLARE
    v_chk_flag varchar2(1) := 'N';
    begin
    if (:old.enabled_flag <> :new.enabled_flag and :new.enabled_flag='Y' ) t
    hen
    select 'Y' into v_chk_flag
    from obtpa_unwrapped_conc_programs
    where application_id = :new.application_id
    and conc_prog_short_name = :new.concurrent_program_name
    and active_flag = 'Y';
    if v_chk_flag='Y' then
    raise_application_error(-20000,'Please contact OuterBay, not allowd t
    o enable these concurrent programs...');
    end if;
    end if;
    exception
    when no_data_found then
    v_chk_flag := 'N';
    end;
    ALTER TRIGGER "APPS"."OBTPA_FND_CONCURRENT_PROGRAMT2" ENABLE
    SQL> l
    1* select dbms_metadata.get_ddl('TRIGGER','OBTPA_FND_CONCURRENT_PROGRAM_T','APPS') from dual
    SQL>
    SQL> select dbms_metadata.get_ddl('TRIGGER','OBTPA_FND_CONCURRENT_PROGRAM_T','APPS') from dual;
    DBMS_METADATA.GET_DDL('TRIGGER','OBTPA_FND_CONCURRENT_PROGRAM_T','APPS')
    CREATE OR REPLACE TRIGGER "APPS"."OBTPA_FND_CONCURRENT_PROGRAM_T"
    AFTER UPDATE OR DELETE
    ON fnd_concurrent_programs
    FOR EACH ROW
    DECLARE
    l_is_purge_program integer;
    l_executable_id number;
    l_application_id number;
    l_executable_name varchar2(30);
    l_application_sn varchar2(30);
    BEGIN
    if (
    (:new.EXECUTABLE_ID||'_'||:new.EXECUTABLE_APPLICATION_ID) =
    (:old.EXECUTABLE_ID||'_'||:old.EXECUTABLE_APPLICATION_ID)
    ) then
    return;
    end if;
    -- the executable is being changed. Need to make sure it is
    -- not one of the purge and archiver executables.
    l_executable_name := obtpa_oa_constants.g_wrapper_executable_name;
    l_application_sn := obtpa_oa_constants.g_obtpa_apps_short_name;
    SELECT e.executable_id,
    e.application_id
    INTO l_executable_id,
    l_application_id
    FROM fnd_executables e,
    fnd_application a
    WHERE a.application_id = e.application_id
    AND a.application_short_name = l_application_sn
    AND executable_name = l_executable_name;
    IF (
    (:new.EXECUTABLE_ID||'_'||:new.EXECUTABLE_APPLICATION_ID) !=
    (l_executable_id||'_'||l_application_id)
    ) then
    select count(*)
    into l_is_purge_program
    from obtpa_purges
    where ORIG_CONC_APPL_ID = :old.application_id
    and ORIG_CONC_PROG_ID = :old.concurrent_program_id
    and PURGE_TYPE != 'REFERENCE';
    IF l_is_purge_program != 0 THEN
    raise_application_error(-20000,
    'Error: Special procedure required to update OBT Purge programs');
    END IF;
    end if;
    END;
    ALTER TRIGGER "APPS"."OBTPA_FND_CONCURRENT_PROGRAM_T" ENABLE
    SQL>
    SQL> ALTER TRIGGER "APPS"."OBTPA_FND_CONCURRENT_PROGRAM_T" ENABLE;
    Trigger altered.
    SQL> ALTER TRIGGER "APPS"."OBTPA_FND_CONCURRENT_PROGRAMT2" ENABLE;
    Trigger altered.
    SQL> exit
    ========================================================
    SQL> alter trigger APPS.OBTPA_FND_CONCURRENT_PROGRAMT2 compile;
    Warning: Trigger altered with compilation errors.
    SQL> show error
    Errors for TRIGGER APPS.OBTPA_FND_CONCURRENT_PROGRAMT2:
    LINE/COL ERROR
    5/13 PL/SQL: SQL Statement ignored
    6/18 PL/SQL: ORA-04045: errors during recompilation/revalidation of
    APPS.OBTPA_UNWRAPPED_CONC_PROGRAMS
    ORA-00980: synonym translation is no longer valid
    SQL>
    select object_name,owner,object_type,status from dba_objects where object_name in ('OBTPA_UNWRAPPED_CONC_PROGRAMS');

    SQL> select owner, object_type, object_name from dba_objects where
    status = 'INVALID' and object_name in (select referenced_name
    from dba_dependencies where name = 'OBTPA_UNWRAPPED_CONC_PROGRAMS'); 2 3
    OWNER OBJECT_TYPE
    OBJECT_NAME
    APPS SYNONYM
    OBTPA_UNWRAPPED_CONC_PROGRAMS
    GBLAPPS SYNONYM
    OBTPA_UNWRAPPED_CONC_PROGRAMS

  • Cannot access conflicts unable to retrieve contact information from the sync server.

    ITunes error message Cannot access conflicts unable to retrieve contact information from the sync server.

    I got this advice from Gator5000e on Apple Supposrt Communities:
    I use Windows 7 so the path to find this file
    might be different under a different OS.
    Close iTunes. Search on the words "conflicts.synconflicts".
    I renamed it  to conflictsold.synconflicts the .synconflicts is the extension so you can't
    rename that.
    Then restarted Windows. As a test I made changes to a note in NOTES on each device. Then connected them one at a time to my computer which has iTunes 10 and Runs Windows 7, it worked !

  • How to know which table in the database a form is accessing

    Actually Im new to oracle applications,
    Im getting an error when i open a form from system administrator responsibility saying that table doesnot exist.
    My basic doubt is, how to know which table in the database a form is accessing.
    Any response is higly appreciated.
    Thanks,
    Praveen
    Edited by: user10239520 on Sep 10, 2008 7:07 AM

    Take a look at the following thread:
    Is there a query log in EBS?
    Re: Is there a query log in EBS?

  • HT201210 is anyone having trouble connecting to the activation server?

    is anyone having trouble connecting to the activation server?

    All of Apple's servers...including the activation servers are pretty much flooded with users like you doing the same thing. Be patient and keep at it...or wait till the traffic to them has decreased and then try again. Coming back to it tomorrow  (if that's a viable option for you) will likely increase your chances of not having issues.

  • MDM adapter : what is meant by the database server ?

    Hi all,
    we are testing MDM adapter on PI 7.1 (no eHp). The adapter config requires an MDM server but separately a database server entry as well.
    Does anybody have a working MDM adapter ? if so, what did you fill in in the "database server"
    parameter of the adapter ? is it a URL ? JDBC name ? JNDI name ? IP address ? and to which database ? Í'm assuming the database of the MDM server, but that one is installed on the MDM server
    (for which we configured an IP address in the "mdm server" field).
    additionally, can somebody explain the reason for that separate Database config parameter ?
    I have found no explanations in the documentation so far.
    Regards,
    Ronald van Aalst
    TNT Post

    Hi,
    MDM uses internally Data base Server, MDM is like one Data Base where we can store master Data.
      when you are trying to connect to MDM using MDM-PI Adapter, you have to Give all details like       port      number,server details,
    please read don about MDM Documetation about MDM-PI Adapter.
    http://help.sap.com/saphelp_nwmdm71/helpdata/en/48/956cd09521062de10000000a42189d/frameset.htm
    Regards,
    Raj

  • Can't connect to the database server from localhost

    Hi,
    I'm having a problem I hope you can help with please!
    I recently installed mysql and phpmyadmin... I can access mysql perfectly from the command line, and can access it partially through phpmyadmin although there are some restrictions that I haven't figured out how to change yet (despite editing php.ini, configure.inc.php and others), but on the whole inside phpmyadmin I can see all the databases I've uploaded with the command line and all the users are there and can be edited. Unfortunately whenever I try to connect to a mysql database using a username and password that was created in phpmyadmin (or anywhere!), I get a 'cannot connect to the database server error'. I've checked and rechecked the username, the passwords, the database names and the host names a thousand times but nothing I change is working.
    Is there a special prefix my mac could be adding to the database, usernames or host names?
    Thanks!

    Okay, don't worry!
    I finally figured it out...
    it needed to be 127.0.0.1 rather than localhost!

  • How to get Database name/IP address of the database server from forms10g

    Hi everybody,
    How do I get the database instance name and IP address of the database server?
    I am using Foms 10g and the database server is Oracle 10g.
    Sukanta

    Dear...........
    Plz use this code
    select SYS_CONTEXT('USERENV', 'IP_ADDRESS', 15) ipaddr from dual;
    SELECT utl_inaddr.get_host_address IP ,UTL_INADDR.get_host_name NAME FROM dual;
    select SYS_CONTEXT('USERENV', 'HOST') HELLO from dual;
    select SYS_CONTEXT('USERENV', 'TERMINAL') HELLO from dual;
    select SYS_CONTEXT('USERENV', 'OS_USER') HELLO from dual;
    SELECT SYS_CONTEXT ('USERENV', 'SESSION_USER') FROM DUAL;
    SELECT SYS_CONTEXT ('USERENV', 'DB_UNIQUE_NAME') FROM DUAL;
    thx.

  • Sending Mail Notification From the database server

    Hi All,
    I want to send the mail notification to any email id from the database server.
    I used the in built Package UTL_SMTP(pp_to,pp_from,pp_subject,pp_hostname) but i didn't got the success. Actually i dont know how and what parameters has to pass to this package .
    It will great help if some body helps with the an example.
    Thanks in Advance

    917574 wrote:
    I want to send the mail notification to any email id from the database server.Oracle version?
    The easiest is to use UTL_MAIL - available from 10g onwards. If you're on 11g, you also need an ACL (Access Control List) entry to allow PL/SQL code to step outside the database and connect to an external server.
    UTL_MAIL uses UTL_SMTP. You can use UTL_SMTP directly, but then you need to understand the SMTP protocol and how to correctly construct Multipurpose Internet Mail Extensions (MIME) e-mail bodies. Not difficult - but something that many developers seem insistent to remain ignorant about.

  • Are there any conflicts or problems having 2 browsers on the same computer using windows 7

    I have no experience with having different browsers on the same computer and want to know if there are any conflicts or problems before I download a second browser.

    There are no conflicts if you install multiple browsers to the same computer. You can do that just fine.

  • DST fix for JDK 5 - conflicting info as to which version has the fix?

    It seems that there are some conflicting information on which version of JDK 5 has the DST fix.
    as per this link, http://java.sun.com/javase/tzupdater_README.html, it states 5.0_7 has the fix
    The US2007DST data changes were incorporated into the following releases: 1.3.1_18, 1.4.2_11, 5.0u7.
    This link also from Sun , http://java.sun.com/developer/technicalArticles/Intl/USDST/, indicates that it is 5.0_6 or later.
    Thanks
    Can someone from Sun publish a definite statement as to which version has the fix ?

    Thanks for the information.
    1) It is in both places,  program files and program files (x86)
    2) But.... the desktop icon to elements points to the (x86) version.
    3) I was not asked to put any other discs in, i will now go and install them, thanks for the advice.  I was wondering why there were so many discs, i assumed it was mac stuff.
    thanks for the feedback.

  • No Solaris Management Console was available on the specific server

    Hi all,
    We had just finish setting up a new Solaris 10 environment. When i launch smc on the server, on selecting toolbox there's an error message:
    No Solaris Management Console server was available on the specified server. Please ensure there is a Solaris Management Console server available on the specified host and that it is running.
    However, upon verifying whether smc is running:
    ./init.wbem status
    Solaris Management Console server version 2.1.0 running on port 898.
    Not sure why this error message appeared, thanks.

    Regarding SMC (not SunMC)..
    Note: SMC = Solaris Management Console
    SunMC = Sun Management Center (topic of this forum)
    Patch 121308-16+ makes WBEM "secure by default."
    Customers running Solaris 10 6/06 or prior must modify the client's WBEM
    configuration file to allow remote connections after installing patch 121308.
    1. Modify the following line in /usr/sadm/lib/smc/policy/smcserver.config:
    FROM:
    remote.connections=false
    TO:
    remote.connections=true
    2. Stop and restart wbem.
    # /etc/init.d/init.wbem stop
    # /etc/init.d/init.wbem start
    3. Verify that WBEM is now listening for connections to port 898
    on all interfaces:
    # netstat -an |grep 898
    *.898 *.* 0 0 49152 0 LISTEN
    In Solaris [TM]10 update 3 (11/06), the startup mechanism for WBEM was changed
    from the legacy (rc script) method to the new Service Management Facility (SMF).
    To allow remote WBEM connections on Solaris 10 update 3 or later:
    # svcadm disable wbem
    # svccfg -s wbem setprop options/tcp_listen=true
    # svcadm enable wbem

  • Configuration of the Import Manager in order to use the Import Server

    Hi all,
            Firstly thanks a lot for all. The question is: I need to set all the properties neccesary to use the Import Server, so would be very positive to know how to set all the default import action in the import manager. when I try to make that all default import action under the Records Option in the main menu are disable.
    Can someone help me with that?.
    Thanks in Advance and Best Regards.

    Hi Devashish Bharti
         All that you have told is configured, instead of this configuration, the default import action: none/none;single/exact is disable in the "Records" main menu. Do you know what happen?
    Best Regards.

  • Having problem connecting to the livecache server from APO instance

    Could not able to connect to the live cache server from the APO server after installing both the instances separately on two different systems, while using the T-code LC10 to make a connection from APO DDIC login its displaying the following message
    ""timeout during allocate / CPI-C error CM_PRODUCT_SPECIFIC_ERROR ""
    after entering the Livecache name and Livecache hostname correctly in the livecache integration..both the instance are on the same network and able to ping each other with the hostname and IP addressess..
    It will be great if somebody help me in solving the problem..
    Thanks in Advance
    Srikanth

    is this query resolved at your end? or you still looking for ans.

  • How to view images which resides in the database using JFrame.

    Hello defts,
    Im developing an application using swings. I need to display a image in a JFrame during an button click event. where that image resides in the database.

    the image shouldn't be in the db, just the path to the image location.
    so, open the db, get the location, close the db, get the image from the location,
    then either add the image to the frame via a JLabel or a JPanel (and its paintComponent()).
    when you add/remove components to the frame you will need to call
    frame.validate();, and possibly also
    frame.repaint();

Maybe you are looking for