How to do a complete cleanup in the repository of a self-made plugin ?

Hi *,
How to remove a self made Plug-In from repository ?
I have got the ARE review and we suppose that this is not supported. Anyway, please try to answer that question and there are two related SR's (7446566.993, 7370886.993) and one Bug is open for that issue.
Screen prints and the xml file with metric definition are available at GTCR for SR 7446566.993.
Thanks,
Torsten

Hello Torsten,
"...If we try to re install it after, we still have status down while it is up in reality...."
As per my understanding of EM, everything is based on TargetGUID, which is a combination of target-name and target-type. Based on this, you may like to give a different target-name and give it a try. (I believe, the reason things work fine is also as explained above. With a different target-type name, the TargetGUID is changed and hence, the behaviour)
However, both the approaches (a new target-name and/or new target-type name) are not ideal in nature. Check the AVAILABILITY & ALERT tables (don't remember the exact table name(s), though). One of these table holds the status value for targets (and the value is a number - a while back I had investigated on this but am not having the info handy) and the information on alert generated.
You may also like to clear agent STATEs. Agent maintains state of each metric (& target). Try following:
1. Stop EM Agent (this is not necessary though)
2. Execute "emctl clearstate agent" on agent system.
3. Delete all files under emd/state, emd/recv and emd/upload
4. Restart the agent (if step 1 was executed)
5. Check the behaviour of the target status now on target home page
Hope it helps !
Regards,
-Shant

Similar Messages

  • How do I remove Completed items from the Completed Reminders List? The list is growing too long.

    How do I delete Completed items from the Completed Reminders List? The list is growing too long.

    The little box, next to the reminder on the reminder page.  Touch it, and it puts a check mark there, i suppose to mean completed.  Leave the app.  When you go back, the items are gone.  ( at least on mine...)

  • How do you clear completed updates from the app store after downloading is complete?

    How do you clear completed updates from the app store after downloading is complete on iOS 7.0.2?

    You don't. It's how things are done now, likely to accommodate those that have auto update turned on.  IT's been said that the updates will just drop off after a period of time but  time will tell on that.

  • How do I make a deployment of the Repository in ODI .Desen to Production?

    How do I make a deployment of the Repository in Oracle Data Integrator ? Step by Step? Someone has some sample deployment procedure document?

    How do I make a deployment of the Repository in Oracle Data Integrator ? Step by Step? Someone has some sample deployment procedure document?

  • How to fetch only WebI reports from the repository

    How to fetch only WebI reports from the repository, where in we have Deski reports also in the repository.. any macro??

    here is the query to fetch only webi reports:
    Open Administration Launchpad (.Net / Java) from:
    Start >> All Programs >> BusinessObjects XI Release 2 >> BusinessObjects Enterprise >
    Click on the 'Query Builder' under 'Administration Tools' on the left pane.
    Logon to Query Builder using Enterprise Administrator credentials.
    Run the following query for Web Intelligence Reports:
    SELECT SI_ID, SI_NAME, SI_OWNER FROM CI_INFOOBJECTS WHERE SI_KIND='WEBI'
    Thanks,
    Srikanth.

  • Newbie questions - How do I log in & what's the repository

    1) After I install Oracle 9i lite, and start Sql*plus I'm stuck - becuase I have no idea what to use for the UserID/Password, etc., and can find NOTHING in the HTML doc/release notes to get me over this most basic requirement.
    2) What's the repository, and why do I need it?

    Thanks for sending over the information.
    You did create a second Skype account based on your Microsoft account email (NB: That's not necessarily a @live.com or  @outlook.com email address, since you can sign up for a Microsoft account using any email address as identifier).
    To resolve this situation please:
    Sign in with your Microsoft account at www.skype.com/go/myaccount
    Delete this Skype account based on your Microsoft account by following the "unlink" instructions: https://support.skype.com/en/faq/FA12211/how-do-i-​unlink-my-skype-account-from-my-microsoft-or-faceb​...
    After you've done this please re-enter the password recovery flow for your Skype account and use your email address again. This time around - since no Skype account based on that email as Microsoft account exists - you should be able to recover your password.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • How do I find completed projects from the theatre that have disappeared

    yesterday I had two movies saved in the theatre of imovie 10.  today they are gone.  Are they saved somewhere that i can't find?  I've looked thru all the projects in Imovie.  I believe this happened after the update that i installed today.

    Are you saying that if you select Theater at the top of iMovie window you do not see your two movies? Are you using iMovie 10,0.3?

  • How do I expose XMLType data in the repository

    Assume the PO schema po.xsd
    [oracle@chambers oracle]$ head po.xsd
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
               xmlns:xdb="http://xmlns.oracle.com/xdb"
               version="1.0"
               xdb:storeVarrayAsTable="true">
      <xs:element name="PurchaseOrder" type="PurchaseOrderType" xdb:defaultTable="PURCHASEORDER"/>
      <xs:complexType name="PurchaseOrderType" xdb:SQLType="PURCHASEORDER_T">
        <xs:sequence>
          <xs:element name="Reference" type="ReferenceType" minOccurs="1" xdb:SQLName="REFERENCE"/>
          <xs:element name="Actions" type="ActionsType" xdb:SQLName="ACTIONS"/>
          <xs:element name="Reject" type="RejectionType" minOccurs="0" xdb:SQLName="REJECTION"/>
    ...I have a document that conforms to the schema purchaseorder.xml
    [oracle@chambers oracle]$ more purchaseorder.xml
    <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://www.nubridges.com/jchambers/po">
      <Reference>SBELL-2002100912333601PDT</Reference>
      <Actions>
        <Action>
          <User>SVOLLMAN</User>
        </Action>
      </Actions>
      <Reject/>
      <Requestor>Sarah J. Bell</Requestor>
      <User>SBELL</User>
      <CostCenter>S30</CostCenter>
      <ShippingInstructions>
        <name>Sarah J. Bell</name>
        <address>400 Oracle Parkway
    Redwood Shores
    CA
    94065
    USA</address>
    Step 1. Register the schema
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL => 'http://www.nubridges.com/jchambers/po',
        SCHEMADOC => bfilename('ORACLE_USER_HOME', 'po.xsd'),
        CSID      => nls_charset_id('AL32UTF8'));
    Step 2. Verify the registration
    SQL> desc purchaseorder
    Name                                      Null?    Type
    TABLE of SYS.XMLTYPE(XMLSchema "http://www.nubridges.com/jchambers/po" Element "PurchaseOrder") STORAGE Object-relational TYPE "PURCHASEORDER_T"
    Step 3. Insert a valid PO into the database
    insert into purchaseorder values(XMLType(bfilename('ORACLE_USER_HOME', 'purchaseorder.xml'), nls_charset_id('AL32UTF8')));
    Step 4. Verify PO insert ok
    SQL> select * from purchaseorder
      2  ;
    SYS_NC_ROWINFO$
    <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamesNow, I want to be able to expose the purchase order via HTTP/WebDav. In other words, I want to create a repository resource.
    Step 5. Create a folder
    DECLARE
      b BOOLEAN;
    BEGIN
      b := DBMS_XDB.createFolder('/jchambers');
    END;
    Step 6. Create the resource.
    How do I do this using DBMS_XDB.createResource?
    I know I want to use one of these approaches, but how (I need some examples):
    Creates a new resource with the given XMLType data as its contents:
    DBMS_XDB.CREATERESOURCE(
       path    IN  VARCHAR2,
       data    IN  SYS.XMLTYPE)
    RETURN BOOLEAN;Given a REF to an existing XMLType row, creates a resource whose contents point to that row. That row should not already exist inside another resource:
    DBMS_XDB.CREATERESOURCE(
       path     IN  VARCHAR2,
       datarow  IN  REF SYS.XMLTYPE)
    RETURN BOOLEAN;Please advise. Thanks

    Step 6. Create the resource.
    How do I do this using DBMS_XDB.createResource?
    Creates a new resource with the given XMLType data as its contents:
    In this case you do not need to insert the row into the table. When you create the resource XML DB will automatically store the contents of the resource in the table for you...
    Eg
    declare
      res boolean;
    begin
      res :=  dbms_xdb.createResource('/jchambers/purchaseorder.xml',
                                             bfilename('ORACLE_USER_HOME', 'purchaseorder.xml'),  nls_charset_id('AL32UTF8'));
    end;
    /Given a REF to an existing XMLType row, creates a resource whose contents
    point to that row. That row should not already exist inside another resource:
    declare
      res boolean;
      xmlref ref xmltype;
    begin
      select ref(x)
         into xmlref
         from PURCHASEORDER x
        where existsNode(object_value,'/Some/Xpath/That/Identifies/Exactly/One/Row') = 1;
      res :=  dbms_xdb.createResource('/jchambers/purchaseorder.xml',xmlref);
    end;
    /

  • How do I get Firefox to use the Adobe Acrobat 9.0 Standard plugin to open PDF docs in the browser window?

    I have Acrobat 9.0 Standard installed on my laptop and I've followed the guides provided by Adobe and Firefox for using the provided Adobe plugin file with Firefox so that I can view PDF documents in the Firefox browser window, but neither one has worked for me. I have the location of the Nppdf32.dll file (C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Browser) and Acrobat is configured to "Display PDF in browser", but whenever I open a pdf on a website, my options are still only to either open it externally with Acrobat or save it. What do I do?

    Your response identifies the issue exactly! My website is hosted by GoDaddy. I have forwarded your linked information to their tech department. The URL below my signature is the site having the problem I've outlined when attempting to access linked images.
    Thank you
    Vincent G. Flaherty, Principal
    Hamilton 1:1 Communications, LLC
    410 Fern Road
    Orwigsburg, PA 17961-9210
    Tel: (267) 261-8693
    Designed for Submarines:
    http://www.designed4submariners.com

  • HT2531 How can Spotlight find a file in the Library (in an app's plugin folder)?

    I'm writing a plugin for SketchUp that lives in SketchUp's plugins folder in the system Library.  Even when I put an alias of the plugins folder out on the desktop, Spotlight can't seem to find it (my plugin file).  I've learned the trick of using the option key to reveal the Library folder in the Go menu, but why does the file remain 'hidden' from Spotlight after I've drug an alias of its folder out to the desktop?
    I also tried using Terminal to patch Hidden to NoHidden without reliable results.  Yuck.
    Thanks for any help you can offer,
    John Trotter

    To view system and hidden files, use the Finder (cmd-F) to find.
    From the criteria popup menu, select Other...
    From that list that pops up, find System Files and Visibility; check both so they stay in the menu.
    When searching for system files or hidden files, use those criteria.

  • Without updating any plugins, how do I prevent, remove or disable the requirement to "Click to Activate Plugins?"

    I want to reverse, undo, prevent, disable or even remove the following (see link below), WITHOUT having to change versions, or update actual plugins:
    https://support.mozilla.org/en-US/kb/why-do-i-have-click-activate-plugins
    I repeat, WITHOUT having to change my Firefox version, change the plugin version, or UPDATE versions on either.
    I want Firefox to quit bugging me about having to ACTIVATE a DEACTIVATED plugin.
    I DO NOT want to UPDATE VERSIONS of plugins or the browser and I DO NOT want to have to "click to activate plugins."
    It seems that Firefox collaborates with plugins to determine if the vendor has put out a new update. If there is a new update, Firefox inconveniences me.

    My security is none of your business. You are intruding into personal life of any person using your browser. Your market share is already going down. For me, FF browser is on the borderline, but it looks like the balance is moving to the side of FF being too intrusive. Only few month ago I managed to to block your automatic updates, now you are bugging me with every pdf file I open. Could let me decide if they are dangerous or not?

  • Create new objects on the repository

    Hi
    I would like to know how to create or modify objects in the repository and whether by doing that they would be created or modified in the database or I have to do it on the database first.
    thanks

    Hi,
    then you need to look into the code you are doing. thats a custom application which we have no knowledge about.
    ingo

  • Who is the Repository Owner

    Hi,
    I want to know how to check to know who is the repository owner ( 9i)?
    Thank you very much!

    This is quite straightforward. Log in to SQL*Plus as any authorised repository user and issue the following query:
    select owner from all_tables
    where table_name = 'I$SDD_OBJECT_VERSIONS';
    The listed owner name is the repository owner.

  • I have rented a movie on my ipad. It did not download due to not being on wifi at the time.  I know I completed the rental because my gift card balance went down $3.99 plus tax.  How do I find where to download the movie?

    I have rented a movie on my ipad. It did not download due to not being on wifi at the time.  I know I completed the rental because my gift card balance went down $3.99 plus tax.  How do I find where to download the movie?

    But now I can't find the actual movie...I go to iTunes to purchases and view movies , to downloads and searched the title of the movie...I can see an icon of it and it is in a separate place from other purchases but it says downloaded in faded lettering. Where is it?
    If you can't find the movie you downloaded on your iPad, iPhone or iPod Touch, check inside your Videos App

  • I'm downloading a movie to each of my kids new ipads.  it says that it's downloading, but the completion % has shown the same % since it began 2 hours ago.  is this normal? one shows 94%, the other 24%.  how do I know if it's progressing?

    I'm downloading a movie to each of my kids new ipads.  it says that it's downloading, but the completion % has shown the same % since it began 2 hours ago.  is this normal? one shows 94%, the other 24%.  how do I know if it's progressing?

    You are on Windows 2000, you do not have a "Firefox" button, and should consider yourself to be fortunate in that you still have menus and don't have to do anything to get the menus back instead of the "Firefox" button. (The same applies to Windows XP users).
    Use the "File" menu to get to Import. You are not on Windows 7 or Vista, and don't have to put up with the nonsense added for Aero.
    If you want the "Firefox" button you can get it with View -> toolbars -> (uncheck) Menu Bar. The menu bar and the "Firefox" button were supposed to be mutually exclusive (which is impossible in some cases without being incompatible).
    Once you are using the "Firefox" button ...
    Use the "Alt" key to view the menu bar (temporarily) containing File, Edit, View, History, Bookmarks, Tools, and Help. On Windows 7 and Vista, the menu bar was hidden by default in Firefox 4 and above. These menu items are more or less available under the "Firefox" button which has the most used of the built-in Firefox menu items available in a different format.
    To get back to having menus again. "Firefox" button -> Options (second column) -> (check) Menu Bar
    You can make '''Firefox 7.0.1''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 8.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

Maybe you are looking for

  • After a search page renders, the NEW FF does NOT open up a choice in a new window and you lose the search page. WHY? I do not like this!

    every internet browser keeps the main page that renders when you do a search. you can click on any of the options and a new window opens. the latest version of FF i downloaded today has completely removed that feature. when you click on a search choi

  • Create materialized view from Designer9i

    Is there a way to create a materialized view from Oracle Designer 9i that will that have a header that look like this : CREATE MATERIALIZED VIEW XXXXXXXXX REFRESH COMPLETE ON DEMAND WITH PRIMARY KEY Instead of this : CREATE MATERIALIZED VIEW XXXXXXXX

  • MBAM 2.5 Web App Installation Failed

    MBAM 2.5 with SQL 2014 all-in-one Windows 2012 R2 Hyper-V VM. Compliance & Recovery DB installation done. When try to install Web App, I'm using the same domain account when create above 2 DB (read-write permission), but the installation failed with

  • PLSQL api to get current URL

    I am looking for a PLSQL API to return the URL Of the currently displayed page ie an equivalent to the JPDK call to PortletRenderRequest.getPageURL(). Thanks null

  • Import a Date for Sorting

    I had a large database of my songs on MS Access which included the following info for each song: Title(Name), Artist and Date. The Date was the mm/dd/yy which the song first entered the Top 40 according to Billboard (from one of their reference books