How to resolve SCOM event 1102

i have deployed a test environment on my local machine and am using scom 2012 r2,it is throwing all 1102 error health service in bulk events rule\monitor cannot loaded,how can i resolve this issue,i  went through many forums but am unable to resolve
the issue can someone help me out resolving this issue.
Thanks &  Regards 
Gaddam Suresh

Hi,
These events indicate that some of the workflows failed to load. If these are the core system workflows, these events could cause the issue.
Please refer to the link below:
Troubleshooting gray agent states in System Center Operations Manager
http://support.microsoft.com/kb/2288515
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • How to resolve wait event

    according to statspack report top five waits events are:-
    Event Waits Time (s) Ela Time
    db file sequential read 15,496 651 55.53
    CPU time 470 40.09
    control file parallel write 643 15 1.26
    log file sync 518 13 1.14
    db file parallel write 252 10 .85
    But how can i resolve these events.Please help me. I am not well aware about tuning aspect.
    Thanks in advance

    You input is very restricted, no one can't really advice on this. You would have given more info.
    As you can see, 'db file sequential read' is the top most wait event. Which mean, you are using wrong index or index doesn't required. Look at the top sqls in the stats pack nd tune them.
    This also due to the fact the your index statsitics are not providing enough good info to optimizer.
    Jaffar

  • How to get the alert context from scom event into incident description?

    Hello,
    I user SCO for creating incidents of SCOM events. My problem ist that in some events the most interesting information is standing in AlertContext. But I cannot add this text to the descritipn field of our incident tool. If I user the published variable Context
    from MonitorAlert the creating of the incident fails. The right information is standing in the Params field of the Context content. But if I add the Params variable from MonitorAlert there is not the content given.
    So how can I add the AlertContext information in my incident content?

    Hi,
    I use the Publish Data Context from "Get Alert" and the xpath-Query below to get the short name of the service if Alert is "Windows service stopped".
    I think it's difficult to have a default Query because the Context is too various fot all OpsMgr Alerts.
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • How to resolve PL/SQL lock timer event

    We have EBS 11.5.10.2 on 9.2.0.8 db. the Accrual Reconciliation Rebuild Manager program always stuck on wait event PL/SQL lock timer. I want to know how to resolve the wait event. I use below query to identify wait
    SELECT vs.sid,vs.serial#,vs.inst_id,vs.osuser,vw.event,vw.p1,vw.p2,vw.p3 ,vt.sql_text , vs.program
    FROM gv$session_wait vw, gv$sqltext vt , gv$session vs
    WHERE vw.event = 'PL/SQL lock timer'
    AND vt.address=vs.sql_address
    AND vs.inst_id = vw.inst_id
    AND vs.sid = vw.sid;
    Thanks in Adv.

    Many concurrent managers in eBusiness Suite implement "sleeps" so that they they wake up to check fnd_concurrent_requests every N minutes.
    I would ignore this wait event (but i would check to see that the managers don't have very short sleeps and aren't scanning the requests queue too frequently and/or that there aren't too many manager processes doing such).
    Hemant K Chitale
    http://hemantoracledba.blogspot.com
    BTW: Are you very sure that the waits are in the program "Accrual Reconciliation Rebuild Manager" ? It seems to be a Manager to me.
    Edited by: Hemant K Chitale on Jul 31, 2009 12:08 AM

  • How to resolve FRM-40733:PL/SQL built-in DBMS_ERROR_CODE failed error

    Hi
    I am getting the FRM-40733:PL/SQL built-in DBMS_ERROR_CODE failed, when I am trying to search a form FORM1.
    It was working fine before I developed another form FORM2. The new form FORM2 contains a push button to create a report.
    Event after deploying the new form FORM2, the FORM1 was working fine. But after few days this error is occuring
    could you please tell me how to resolve this?
    10.1.2.0.2 version of AS is installed.
    I have written the following code in the push button.
    declare
         repid REPORT_OBJECT;
         v_rep VARCHAR2(100);
         List_id ParamList;
    begin     
         List_id := GET_PARAMETER_LIST('input_params');
         IF NOT ID_NULL(List_id) THEN
              DESTROY_PARAMETER_LIST(List_id);
         END IF;
         List_id := Create_Parameter_List('input_params');
         Add_Parameter(List_id, 'column1',TEXT_PARAMETER,value1);
         Add_Parameter(List_id, 'column2',TEXT_PARAMETER,value2);
         Add_Parameter(List_id, 'column3',TEXT_PARAMETER,value3);
         repid := FIND_REPORT_OBJECT('rep1');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'/u/10gAS/reports/report_file.rdf');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,'/u/10gAS/reports/report1.pdf');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'report_server_10g');
         v_rep := RUN_REPORT_OBJECT(repid, List_id);
         Destroy_Parameter_List(List_id);
    end;
    regards

    John,
    Could you please post what was the bug number and if possible a brief description because I could not not find it in the bug database on the OTN site.
    Thanks in advance

  • How to resolve FRM-40733:PL/SQL built-in DBMS_ERROR_CODE failed.

    Hi
    I am getting the FRM-40733:PL/SQL built-in DBMS_ERROR_CODE failed, when I am trying to search a form FORM1.
    It was working fine before I developed another form FORM2. The new form FORM2 contains a push button to create a report.
    Event after deploying the new form FORM2, the FORM1 was working fine. But after few days this error is occuring
    could you please tell me how to resolve this error?
    10.1.2.0.2 version of AS is installed.
    I have written the following code in the push button.
    declare
         repid REPORT_OBJECT;
         v_rep VARCHAR2(100);
         List_id ParamList;
    begin     
         List_id := GET_PARAMETER_LIST('input_params');
         IF NOT ID_NULL(List_id) THEN
              DESTROY_PARAMETER_LIST(List_id);
         END IF;
         List_id := Create_Parameter_List('input_params');
         Add_Parameter(List_id, 'column1',TEXT_PARAMETER,value1);
         Add_Parameter(List_id, 'column2',TEXT_PARAMETER,value2);
         Add_Parameter(List_id, 'column3',TEXT_PARAMETER,value3);
         repid := FIND_REPORT_OBJECT('rep1');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'/u/10gAS/reports/report_file.rdf');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,'/u/10gAS/reports/report1.pdf');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'report_server_10g');
         v_rep := RUN_REPORT_OBJECT(repid, List_id);
         Destroy_Parameter_List(List_id);
    end;
    regards

    We have the same problem, this problem was when the user run a big script process in Oracle 9i and forms 6.
    Cesar Bazan
    TIC
    29 DE OCTUBRE
    QUITO - ECUADOR
    www.29deoctubre.fin.ec

  • Error: 'mojarra is undefined', How to resolve it.

    Hi,
    I have an error mojarra is undefined in ADF, How to resolve it. I have a form which have 3 layers. One is Radio button list and then there are two tables, one is master table and another is detailed table. In radio button i defined status after clicking the status i got the result in master table. There is the command button in master table when i click the command button i got the detailed result in detailed table by selecting the current row. At first time all are working fine. But when i click the command button and when the detail table result will display and if i click the radio button so the above error mojarra is undefined. I am using this form in Internet explorer 7. Could you please help me.
    I have code snippet here.
    <af:form id="f1">
    <af:panelStretchLayout id="psl1">
    <f:facet name="center">
    <af:decorativeBox id="db1">
    <f:facet name="center">
    <af:panelSplitter id="ps1" orientation="vertical">
    <f:facet name="first">
    <af:table value="#{radionBean.generatedData}" var="item" columnSelection="single" rowBandingInterval="0"
    id="tableData">
    <af:column sortable="false" selected="true" headerText="Ticket No" align="start" id="c1">
    <af:outputText value="#{item.ticketno}" id="ot1"/>
    </af:column>
    <af:column sortable="false" headerText="Requestor" align="start" id="c2">
    <af:outputText value="#{item.requestor}" id="ot2"/>
    </af:column>
    <af:column sortable="false" headerText="" id="c11">
    <af:commandButton text="More" id="cb1" action="#{radionBean.myrow}"
    partialSubmit="false">
    <f:setPropertyActionListener target="#{radionBean.currentrow}"
    value="#{item}"/>
    <af:showPopupBehavior popupId="noteWindow" triggerType="mouseHover" alignId="cb1"/>
    </af:commandButton>
    <af:popup id="noteWindow">
    <af:dialog title="More">
    <af:outputText text="Remarks" value="#{item.requestdesc}"/>
    </af:dialog>
    </af:popup>
    </af:column>
    </af:table>
    </f:facet>
    <f:facet name="second">
    <af:table value="#{radionBean.detailData}" var="itemdet" rowBandingInterval="0"
    id="detailTableData">
    <af:column sortable="false" headerText="Ticket No" align="start" id="c21">
    <af:outputText value="#{itemdet.ticketno}" id="ot21"/>
    </af:column>
    <af:column sortable="false" headerText="Date" align="start" id="c22">
    <af:outputText value="#{itemdet.date}" id="ot22"/>
    </af:column>
    </af:table>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    <f:facet name="top">
    <af:panelGroupLayout id="pgl1" layout="horizontal">
    <h:selectOneRadio label="Select any Option"
    requiredMessageDetail="Status must be selected"
    valueChangeListener="#{viewScope.radionBean.valueChangeData}"
    value="#{radionBean.myStatus}" id="status2">
    <f:selectItems value="#{radionBean.status}" var="st" itemLabel="#{st.lable}"
    itemValue="#{st.value}" id="si1"/>
    <f:ajax event="valueChange" execute="@this" render="tableData"/>
    </h:selectOneRadio>
    </af:panelGroupLayout>
    </f:facet>
    Thank you in advance
    Regards
    Muhammad Khurram

    Hi,
    Mojarra is the name of the JSF reference implementation.
    What I see though is that you are mixing JSF native behavior (e.g f:ajax , f:setPropertyActionListener) with ADF Faces functionality which may be a cause for the problem (I say may because I don't have a prove that this is the reason). I don't really understand why you mix technologies the way you do instead of using the same functionality in ADF Faces. To track the problem down I suggest zo rebuild the form with JSF RI components only. If this works then the issue you see is a problem with ADF Faces and JSF 2.0 behaviors, which needs to be filed as a bug (which I could do if you provide the proof)
    Frank

  • How to resolve deadlock in ssrs subscriptions

    Hi ,
    i have a subscription which is sending emails to my multiple clients ..
    subscription runs fine when there are only two recepients and gets errored as i list 3rd recepient in
    To  field.
    i found that 
    , it is deadlock issue 
    and when i create trace in SQL profiler on my server database and select deadlock graph event 
    and it is caught ..
    have a look on image ..
    but i dont understand how to resolves issue using this ...
    can anyone narrate this graph to identifiy ..
    Dilip Patil..

    Hi Dilip Patil,
    According to your description, you configured subscription to send emails to multiple users, it works fine when there are only recipients, if there are three recipients, you will get deadlock error.
    A deadlock occurs when two system server process IDs (SPIDs) are waiting for a resource and neither process can advance because the other process is preventing it from getting the resource.
    For Node 1, an exclusive (X) lock is being held by SPID 66 on an index KEY on the object. Node 2 shows that an exclusive (X) lock is being held by SPID 65 on an index key on the same object. For each node, is the Requested By section, which details any resource
    requests that cannot be granted, due to blocking. For Node 1, we can see that that SPID 66 is waiting for a shared read lock on the index key (it is blocked by the X lock held by SPID 65). For Node 2, we can see that SPID 65 is waiting to acquire a shared
    read on the index key (it is blocked by the X lock held by SPID 66).
    In this case, we need to kill one of the SPID to free the resources and allow the other SPID to continue.
    For detail information about Handling Deadlocks and Minimizing Deadlocks in SQL Server, please refer to the following document:
    https://www.simple-talk.com/sql/database-administration/handling-deadlocks-in-sql-server/
    https://technet.microsoft.com/en-us/library/ms191242(v=sql.105).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • How to resolve Library Cache Pin waits?

    Hai All,
    I grant a select privilage on a table to another user. Then my session hangs. after 5 minutes a message present that is 'ORA-04021: timeout occurred while waiting to lock object....' etc.
    I query the v$session_wait and see a Library Cache pin wait present in my session. I copy the p1raw column from here and put into some x$ tables and v$session then I can identify one session using a application using that table. I kill that session . then my grant privilage query works..
    So what is library cache pin waits.. How to identify in application...How to resolve it? it resolve in database level or application level?
    Please Help..
    Shiju

    Most common cause of library cache pin wait event are
    -- Not use binding variables in the query
    -- Some one keeps modify the schema objects
    library cache pin
    This event manages library cache concurrency. Pinning an object causes the heaps to be loaded into memory. If a client wants to modify or examine the object, the client must acquire a pin after the lock.
    Wait Time: 3 seconds (1 second for PMON)
    Parameter Description
    handle address Address of the object being loaded
    pin address Address of the load lock being used. This is not the same thing as a latch or an enqueue, it is basically a State Object.
    mode Indicates which data pieces of the object that needs to be loaded
    namespace See "namespace"

  • Sorry last question got knocked back my ipad and iPhone on two different levels and I am not able to play through Facebook so not able to progress or unlock next level through Apple store. Don't know how to resolve problem

    Sorry last question got knocked back my ipad and iPhone on two different levels and I am not able to play through Facebook so not able to progress or unlock next level through Apple store. Don't know how to resolve problem

    Thank you again for all of your help!! I really appreciate it!
    I think I am following -- I was able to upload to my iPhoto and all photos and videos are there that is a plus! I tried to create an Event in my iPhoto and put all of my photos in that event but for some reason, now my iTunes it not recognizing that Event in my iPhoto. It is not allowing me to import just that event at the moment but I may be doing something wrong. At least all of my pics and vids are in iPhoto so that is a plus and I know they are at least saved somewhere. Just for some reason, my iTunes it not locating the event that I created with only those photos.
    Thank you for letting me know about my contacts! How do I know if I have the contacts app?
    Also, I had no clue that my iCloud could be backed up via cellular data! However, is this a new feature with the most updated iOS?? Unforutnatly I am like 2 iOS updates behind because I don't have enough storage on my phone. I still get the notification that my phone needs to be plugged in and connected to wifi in order to back up to the cloud :-(
    How can I sync using USB? Right now when i click on the info tab for my iPhone in my iTunes this is the answer that I get -- I am a little unclear as to what it means.
    Sync Contacts:
    Your contacts are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone
    Sync Calendars:
    Your calendars are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone

  • ROLLBACK SEGMENT NEEDS RECOVERY AND HOW TO RESOLVE IT

    제품 : ORACLE SERVER
    작성날짜 : 1995-02-06
    Subject :
    This article discusses what it means when a rollback segment needs
    recovery and how to resolve it.
    OVERVIEW
    This bulletin discusses why a rollback segment is the status of
    "needs recovery", what the status means, and how to resolve it.
    INTRODUCTION
    Rollback segments can be monitored through the data dictionary view,
    dba_rollback_segments. There is a status column that describes what state
    the rollback segment is currently in. Normal states are either online or offline.
    Occasionally, the status of "needs recovery" will appear.
    This is considered to be a corrupted rollback segment.
    When a rollback segment is in this state, bringing the rollback segment
    offline or online either through the alter rollback segment command or
    removing it from the rollback segments parameter in the init.ora usually has no effect.
    UNDERSTANDING
    A rollback segment falls into this status of needs recovery whenever
    Oracle tries to roll back an uncommitted transaction in its transaction
    table and fails.
    Here are some examples of why a transaction may need to rollback:
    1-A user may do a dml transaction and decides to issue rollback
    2-A shutdown abort occurs and the database needs to do an instance recovery
    in which case, Oracle has to roll back all uncommitted transactions.
    When a rollback of a transaction occurs, undo must be applied to the
    data block the modified row/s are in. If for whatever reason, that data
    block is unavailable, the undo cannot be applied. The result is a
    'corrupted' rollback segment with the status of needs recovery.
    What could be some reasons a datablock is unaccessible for undo?
    1-If a tablespace or a datafile is offline or missing.
    2-If the object the datablock belongs to is corrupted.
    3-If the datablock that is corrupt is actually in the rollback segment
    itself rather than the object.
    HOW TO RESOLVE IT
    1-MAKE sure that all tablespaces are online and all datafiles are
    online. This can be checked through dba_data_files under the
    status column. For tablespaces, look in dba_tablespaces.
    If that still does not resolve the problem then
    2-PUT the following in the init.ora-
    event = "10015 trace name context forever, level 10"
    Setting this event will generate a trace file that will reveal the
    necessary information about the transaction Oracle is trying to roll
    back and mostimportantly, what object Oracle is trying to apply
    the undo to.
    3-TAKE the corrupted rollback segment out of the rollback_segments parameter in the init.ora
    4-SHUTDOWN the database (if normal does not work, immediate, if that does
    not work, abort) and bring it back up.
    Note: An ora-1545 may be encountered, or other errors, that is ok.
    5-CHECK in the directory that is specified by the user_dump_dest parameter
    (in the init.ora or show parameter command) for a trace file that was
    generated at startup time.
    6-IN the trace file, there should be a message similiar to-
    error recovery tx(#,#) object #.
    TX(#,#) refers to transaction information.
    The object # is the same as the object_id in sys.dba_objects.
    7-USE the following query to find out what object Oracle is trying to
    perform recovery on.
    select owner, object_name, object_type, status
    from dba_objects where object_id = <object #>;
    8-THIS object must be dropped so the undo can be released. An export or
    relying on a backup may be necessary to restore the object after the corrupted
    rollback segment goes away.
    9-AFTER dropping the object, put the rollback segment back in the init.ora
    parameter rollback_segments, removed the event, and shutdown and startup
    the database.
    In most cases, the above steps will resolve the problematic rollback segment.
    If this still does not resolve the problem, it may be likely that the corruption is
    in the actual rollback segment.
    At this point, if the problem has not been resolved, please contact
    customer support.

    Yes we were having the performance issues when it is getting locked? in this what i want to know
    why it happens suddenly?
    or what package this piece of code is calling?
    or is there any possiblity of system will degrade the performance like sys user etc...?
    where exactly i found the root cause for further analysis?
    so that next time onwards if particular objects is locking we come to know why it happens is there any logical false or how do we eliminate this issue last time?
    coz in our environment sometimes most of lockings are from the same table?
    pls let me know where i have to concentrate for debug and how to troubloshoot and reslove this
    sorry for the inconvience.. i m expecting the answer from here. if anybody wants some more info i ll let him know.
    as of till now i got some docs i start to read this.
    Regards
    M.Murali..
    Note: will system/sys degrade the performance ?if so how ?

  • How to forward iCal events

    Does anyone know how to forward iCal events to new attendees?

    Hi jwinter0425,
    Here's how you mail an existing event:
    1. Right-click on the event in iCal
    2. Click "Mail Event"
    If you're sending this to an Microsoft Outlook/Exchange user, they won't be able to open it. I've developed an iCal plug-in that resolves iCal-to-Outlook compatibility issues. It's worth checking it out. http://www.zamain.com.
    -Jon
    As per the terms of agreement, I must disclose that I may receive some form of compensation, financial or otherwise, from my recommendation or link above.

  • How to dispatch custom events from an item renderer used for Datagrid Column

    Hi,
    I am using an Item Renderer for a Data Grid Column and in that mxml, I am dispatching a custom event with data.
    But the main mxml which has the DataGrid is not able to resolve the event. How can I solve this?
    Thanks

    Hi,
    This is the constructor for Event.
    public function Event(type:String, bubbles:Boolean  = false, cancelable:Boolean  = false)
    When you created your custom event after extending from Event, for the parent container receives the event, the bubbles property must be set to true.
    Please check if you have done so. That should solve the problem. Let me know if it doesn't.
    Nishad

  • I bought an I pad 2 from us but I can not activate the Facetime in UAE(Dubai)as I can not see the country in the I pad's  drop list, anyone has an idea as how to resolve this issue

    I bought an I pad 2 from us but I can not activate the Facetime in UAE(Dubai)as I can not see the country in the I pad's  drop list, anyone has an idea as to how to resolve this issue

    I'm not that familiar with how FaceTime works. I know how to set It up but I don't use it. I just know that you can't activate in the UAE. I believe that you can activate in any country that permits it's use. Whether you will need a new ID or not, I can't confirm.
    You can Google this and get all sorts of articles on workarounds. Apparently if you set up a VPN you can use it in the UAE. Here is one article that I found.
    http://talkfree7.blogspot.com/2010/09/how-to-facetime-voip-call-from-uae.html
    I Googled "workaround for FaceTime in UAE" to find this.

  • How to resolve #Multivalue Error

    HI All,
    I have a data like below, in this for inpatient data is NULL and as per business requirement  if data is null then "0". so i create a variable and drag into inpatient's total column
    statement for inpatient is
    =If IsNull([total]) Then 0 Else [total] Where ([items]="Inpatient")
    items                                    total
    Office
    4    
    Utilization
    70
    Inpatient
    it is working and showing as "0"
    but when inpatient has value it is showing #multivalue"
    Office Visits
    4
    Non-Emergency ED Utilization
    70
    Inpatient Stays
    40
    how to resolve is issue
    Please reply i am using SAP BO 3.1 INFOVIEW
    Thanks in advance
    Ranjeet

    Hi Ranjeet,
    First thing is you are getting this error because of the where clause used in the variable.
    Because in the 2nd case when it has value for Inpatient, it is actually taking the same value for all the 3 cases.
    How to remove null value with 0:
    1. Remove where clause from the variable and use that variable in place of Total in the table report.
    2. Use format number option to place 0 in place of undefined values.
    Hope it helps. Please ask if you have any queries.
    Regards,
    Subrat

Maybe you are looking for

  • Pressing the enter key on the keyboard

    Need to know the trigger or the way to attribute code to pressing de enter key on the Keyboard!!!??? Thanks!!!!!

  • URL and taskflow

    Hi, Per Shay's demo, created a bounded task flow to execute a jspx page from an http URL with parameters. Have the task flow like this ExecuteWithParams ----> mypage.jspx Works fine. There is a inline popup in the jspx page. When one of the button is

  • Which Java version to use as administrator

    Hello all, Probably this question is silly, but I'm facing many problems working with Java and the different products related to my tasks as sysadmin. In my PC I need java 1.4.2.12 to be installed for Download Manager (with other versions it simply d

  • After plugging in a USB video capture devise, the computer shut down with a fatal error message.

    I tried using system restore and continued to get fatal error messages.  Pressing escape, F8,F9,F10,F11,& F12 all resulted in fatal error messages.  One time the F10 woked and I pressed exit and save.  I can't get it back again. I tried the recovery

  • "Reversal value greater than the  value invoiced to date" error

    Hi all, I have a scenario.  there is a invoice which we tried to reverse through MR8M. But it was not successful. Now , as a alternative solution I am trying to book credit memo. There were two line items in the PO.  When I try to book Credit memo, t