Does OEM 12c keeps track of tasks performed by its users

HI All,
Does OEM keep track of all the tasks performed on it by user. Suppose a user say "A" has created a group or incident rule and a user "B" deleted the group or incident rule created by user "A". Now can the sysman user or "A" user would anyway know the fact that the user "B" has actually deleted them. So does OEM keeps the tasks performed by its users somewhere where it can be checked and confirmed?
Thanks in Advance!

Yes, EM has it's own auditing, although it is set up at a minimal level to begin with including EM login/logout.  You would want to enable additional auditing to monitor this type of activity.  See the Security Guide for more information: 
http://docs.oracle.com/cd/E24628_01/doc.121/e36415/sec_features.htm#CJAIEIDD
In addition, since this is a target delete scenario, there's a query you can run to see the time of deletion, but not who deleted it:
select entity_type, entity_name, created_date, deleted_date
from gc_manageable_entities_hist
where entity_name = <group>;
Perhaps between the two you can deduce who was logged in at the time of the delete.

Similar Messages

  • Does OEM 12c supports for performing administration tasks on Oracle SOA Suite 10.1.3.5 environment ??

    Hello Everyone,
    I would like to start a discussion on the OEM 12c see if anyone has used for SOA Suite 10g. We are currently running on Oracle SOA Suite 10.1.3.5 we want to make use of OEM 12c for monitoring and perform administration activities. I have gone through some Oracle documents for OEM 12c,I found it's supported up to 10.1.3.4.However I am not so sure so I just wanted to clarify on this.
    Can we install the client in  Oracle Application Server/SOA OC4J  container to perform any administration task,purging,patching,monitor interfaces etc.
    I look forward to your valuable input and feedback on the discussion.
    Best Regards,

    Hi,
    The zip p6511843_101330_Generic.zip contains a README.txt which explains the steps to be followed to apply this patch.
    In the README.txt
    Refer to Section2 point No.1.
    Get the latest Opatch from metalink for bug 2617419.[this zip will contain a Opatch Directory].Extract this zip into your Oracle SOA home.[ex: C:/product/101.3.1/OracleAS_1]
    Also make sure that the Opatch directory in set in the path.
    Since we are running this Opatch on a Basic SOA installtion , you don't have to execute the changeNamesWindows.pl script[make sure that you have installed Basic version of SOA and not the Advanced].
    This patch will not work on Advanced Install.
    You can directly excute
    opatch apply.
    Follow the remaining steps mentioned in README.txt.
    Thanks
    Hot-Plug Team

  • Does OEM 12c similar to the old OEM 10.2?

    I have an old OEM console running as a client on my desktop, OEM 10.2, which displays the databases and all objects and security within. I have been reading much of the documentation for OEM Cloud Control 12c and I am unable to locate where is has this same compatibility as the 10.2 OEM. Did that part of OEM move to SQL Developer or some other product? Please advise.
    Thanks in advance,
    Dawn

    Hi Dawn,
    12c is more advanced with high end capabilities when compared with 10g.
    Many new features were included, with lot more stack changes. The old 10g uses the AS as it middleware, but the new 12c uses the WLS (Weblogic) as its middleware.
    To understand what is 12c and how it is different, follow the below URL:
    http://docs.oracle.com/cd/E24628_01/doc.121/e25353/overview.htm#BABFGHGD
    To understand whats new in 12c which is the latest version available, follow the below URL:
    http://docs.oracle.com/cd/E24628_01/doc.121/e25353/whats_new.htm#CEGIFFGA
    Best Regards,
    Venkat

  • HT4914 Does itunes match keep track of playcount

    most of my playlists are based of playcount info.

    No, it doesn't use your iCloud storage, iTunes Match is separate.

  • Why does my iPad keep crashing? Is it because its still on iOS 6?

    I've had my iPad mini since December 2013 and ive not updated it to ios 7 because I prefer ios 6 and recently In the last month it's been crashing all the time on every app! Including built in apps especially safari and I didn't think not updating it would affect it at all I've also got a iPhone 4 still on ios 6 and that still works perfectly fine. So I'm just wondering does anyone else have this same problem and do I have to update it or something to fix it? (I'd rather not)
    Oh and it's not jail broken either.
    Thanks

    This will typically fix app instability:
    Quit all apps: Double tap the Home button, hold an app icon until it wiggles then tap for each open app, double tap the Home button again.
    then
    Reset: Hold the Sleep/Wake and Home buttons and don’t let go until the screen goes dark and the Apple logo appears (no data will be lost)

  • Keeping track of anyone who made a deletion from a table

    Dear all;
    I thought this was going to be easy but I am yet to think of a solution to this problem. I have the following table created
    create table test_tbl
       test_id varchar2(10) not null,
       test_modifiedby varchar2(30),
       test_result number(10),
       primary key(test_id)
    );with the following insert
    insert into test_tbl
      (test_id, test_modifiedby, test_result)
    values
      ('122', 'John', 4);
    insert into test_tbl
      (test_id, test_modifiedby, test_result)
    values
      ('123', 'Jamie', 6);
    insert into test_tbl
      (test_id, test_modifiedby, test_result)
    values
      ('124', 'Katy', 8);
    insert into test_tbl
      (test_id, test_modifiedby, test_result)
    values
      ('125', 'Eric', 10);I am trying to write a simple procedure which is used for deletion and also I would like to be able to keep track on and the save the user who made the deletion and that is where I am having problems. I need to keep track on who made the deletion because I have a trigger which is used to save all deleted test_id made. See trigger below
    CREATE OR REPLACE TRIGGER test_tbl_before_delete
    BEFORE DELETE ON test_tbl
    for each row
    begin
    insert into audit_test_tbl_table
        (test_id, test_modifiedby, test_result)
    values
       (:old.test_id,
        :old.test_modifiedby,
        :old.test_result
    end;Please how do I solve this problem. All help will be appreciated. Thank you.

    Unfortunately Rob, I wouldnt be able to do that because I am using a web development tool called Asp.net which is linked to our oracle database and from the web development tool, users are able to login into the application I am designing and based on their login creditials, they are able to carryout tasks like deletions, insertions, etc. Now I am able to get the user name and info directly from the web development and able to pass it into my deletion procedure. See procedure below
    procedure deletefromtest_tbl(delete_testid in varchar2, delete_modifieruser in varchar2)
      AS
    temp_cnt number;
    BEGIN
    select count(*) into temp_cnt from test_tbl td
    where td.test_id = delete_testid
    if(temp_cnt != 0) then
        delete test_tbl pk
        where pk.test_id = delete_testid
      commit;
        end if;
    end deletefromtest_tbl;From the procedure, I really don't know how to apply the delete_modifieruser (which contains the information of the user that perform the delete) so that information gets saved in the audit_test_tbl_table.

  • Keeping track of transaction or pgm execution frequencies

    Does R/3 keep track of tx or pgm execution frequencies?  for example, if i wanted to find how many times a z-transaction or z program executed in a month, could i do it?

    Hi,
    Check transaction code STAT or ST03

  • Why does my computer keep disconnecting from my wifi?

    Why does my computer keep disconnecting from my wifi?

    Some users with various Wi-Fi problems have reported that they were given the following instructions by Apple Support, sometimes with success. After completing the procedure, you'll have to recreate all your settings in the Networkpreference pane. Make sure you know how to do that before you begin. Taking screenshots of the preference pane may be helpful.
    Step 1
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Preferences/SystemConfiguration
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A folder should open with an item named "SystemConfiguration" selected. Move the selected item to the Trash. You may be prompted for your administrator password. Reboot and recreate the network settings.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 2
    Reset the System Management Controller.
    Step 3
    Reset the PRAM.

  • Fail to login as other user on OEM 12c Release 2 Cloud control console

    Hi,
    I tried to login on OEM 12c release 2 cloud control console as other user it show the following error
    Authentication failed. If problem persists, contact your system administrator
    but when i try with sysman account then it successful done. so i dont know why it happen. I also checked job_queue_processes that is 1000 and i also checked listener,agent,oms status all are up.
    so please suggest me what should i do and what is the main cause of this problem.
    Thanks,
    Jimmy Gupta

    Hi Venkata,
    This is the contant of emoms.trc file
    so suggest me what should i do to solve this problem.
    es processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,296 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,296 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,297 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,297 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,298 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,298 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,299 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,299 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,300 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,300 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,301 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:39:52,406 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total number of Inbound/Outbound servers in consolidated database very long. Has been truncated.
    2013-03-28 15:39:52,408 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Inbound/Outbound Server Queue - Cumulative Number of Spilled Messages very long. Has been truncated.
    2013-03-28 15:39:52,411 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,412 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,412 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,413 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in the buffered queue per queue (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,414 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Current number of overflow messages spilled to disk from the buffered queue very long. Has been truncated.
    2013-03-28 15:39:52,414 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,415 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,415 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,416 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,417 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,417 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,418 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,418 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,419 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,420 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:39:52,420 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,421 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,422 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:39:52,423 [EMUI_15_39_51_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:41:12,815 [EMUI_15_41_12_/console/database/config/config] ERROR conf.DBConfigListUI logp.251 - Error occured during cluster object initjava.lang.Exception: ClusterUtil.isBigCluster invoked with targetName as null
    2013-03-28 15:41:25,018 [EMUI_15_41_25_/console/database/config/] ERROR conf.DBConfigListUI logp.251 - Error occured during cluster object initjava.lang.Exception: ClusterUtil.isBigCluster invoked with targetName as null
    2013-03-28 15:41:25,363 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.92 - ShortName ShortName Average Synchronous Single-Block Read Latency (ms) very long. Has been truncated.
    2013-03-28 15:41:25,420 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,421 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,422 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,422 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in the buffered queue per queue (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,423 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Current number of overflow messages spilled to disk from the buffered queue very long. Has been truncated.
    2013-03-28 15:41:25,423 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,424 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,424 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,425 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,426 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,427 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,427 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,428 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,429 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,429 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,430 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,430 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,430 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,431 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:41:25,437 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total number of Inbound/Outbound servers in consolidated database very long. Has been truncated.
    2013-03-28 15:41:25,438 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label XStream/Integrated GoldenGate Inbound/Outbound server's queue - Buffered very long. Has been truncated.
    2013-03-28 15:41:25,439 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Inbound/Outbound Server Queue - Cumulative Number of Spilled Messages very long. Has been truncated.
    2013-03-28 15:41:25,440 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label XStream/Integrate GoldenGate Inbound server's coordinator statistics very long. Has been truncated.
    2013-03-28 15:41:25,443 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,443 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,444 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,444 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in the buffered queue per queue (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,445 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Current number of overflow messages spilled to disk from the buffered queue very long. Has been truncated.
    2013-03-28 15:41:25,445 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,446 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,446 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,447 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,447 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,448 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,448 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,449 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,450 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,450 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,451 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,451 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,452 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,453 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:41:25,553 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total number of Inbound/Outbound servers in consolidated database very long. Has been truncated.
    2013-03-28 15:41:25,555 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Inbound/Outbound Server Queue - Cumulative Number of Spilled Messages very long. Has been truncated.
    2013-03-28 15:41:25,558 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,558 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,559 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,559 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in the buffered queue per queue (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,560 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Current number of overflow messages spilled to disk from the buffered queue very long. Has been truncated.
    2013-03-28 15:41:25,561 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,561 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,562 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,562 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,563 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in persistent queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,564 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,564 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per persistent queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,565 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per persistent queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,565 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Average age of messages per buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,566 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Age of the first message in buffered queue per subscriber (seconds) very long. Has been truncated.
    2013-03-28 15:41:25,567 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages processed per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,567 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Total messages received per buffered queue per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,568 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Messages processed per buffered queue (%) per subscriber per minute in the last interval very long. Has been truncated.
    2013-03-28 15:41:25,568 [EMUI_15_41_25_/console/database/config/] WARN emd.targets setContents.101 - Label Space usage of buffered queue with respect to streams pool size (%) very long. Has been truncated.
    2013-03-28 15:42:38,660 [EMUI_15_42_38_/console/database/config/config] ERROR conf.DBConfigListUI logp.251 - Error occured during cluster object initjava.lang.Exception: ClusterUtil.isBigCluster invoked with targetName as null
    2013-03-29 00:06:47,533 [RemoteJobWorker 19041] ERROR em.jobs logMsg.570 - [RFMPlugIn_Cert] storedChecksum :2fa00ec200ba372170ff71256134119b new checksum=9944c75fe1d195310148f005f18931aa componentType=ARU_CERT_PRODUCT timestamp=2013-03-29 00:05:39.528
    2013-03-29 00:12:12,043 [[STUCK] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR em.jobs logMsg.570 - [RFMPlugIn_Cert] storedChecksum :606d9b64aceeebd04015b78551e4e55e new checksum=6c00aeeb8853ba203a3f5d98c9868045 componentType=ARU_CERT_CERTIFICATION timestamp=2013-03-29 00:05:39.528
    2013-03-29 08:52:50,205 [[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] WARN auth.EMRepLoginFilter doFilter.402 - Security ctxt is not set, got no username from container, redirecting to login page
    Thanks,
    Jimmy

  • Keeping track of focused sub...subcomponents

    How can a container keep track of whether any of its descendent components gets focus?
    For example, we do
             container1.add(container2);
             container2.add(component);and somewhere else call
            component.requestFocus();How can container1 find out when component gets focus?
    In 1.4.0 one can listen on the KeyboardFocusManager for changes in focus, but I need a solution that also works in 1.1.8.
    Thanks,
    dog

    Isn't there an event type for gaining focus?
    Yeah, here it is: java.awt.event.FocusListener.
    Perhaps the ancestor component can create a FocusListener and add it to its descendant components' FocusListener lists.

  • I'd like a friend to add a track to a song I'm doing on Garageband, but he uses Digital Performer. Can I somehow transfer my interface to his interface?

    I'd like a friend to add a track to a song I'm doing on Garageband, but he uses Digital Performer. Can I somehow transfer my interface to his interface?

    Just keep it like it is. As an account Mgr you can do everything except add other account mgrs or change billing account pw. But if you have your dad's sign in info for his my vzw.  Now if you need to build your credit then that's another story. Good luck to you and your dad

  • OEM 12c + BMC Performance Manager communication.

    Hi everyone,
    I'm currently searching for guides or information about OEM 12c communication with BMC Performance Manager.
    Today, my BMC PM is monitoring all my oracle databases, what I want to do is use OEM to handle the monitoring, and send critical errors to my BMC PM. This way, it will be easier to hook up new databases to my BMC in the future.
    What I'm looking for is people with knowledge on how I do this.. any information, guides or guidelines would really help alot!
    Thanks in advance,
    Jon-Erik

    EM is showing Host is up makes sense. If I remember correct the OMS pings the host if the agent is down. This will succeed so the host will show up.
    Why the agent is showing up does not make sense to me. The agent sends a signal every (default) 120 seconds. If no signal is received by the OMS the OMS sends a reverse ping to the agent. If this does not succeed the agent and its monitored targets should get the state “Agent Unreachable”.
    Eric

  • Why do my songs and audio books keep getting erased when I add a new book?  Now some books will not play and the iPod does not keep track of where I was when I pause a book, leave for music and then go back!

    About a month ago I added some new audio books to my iPod Classic and then after disconnecting, I discovered EVERYTHING had been erased. 
    I had to restore through my iTunes but then I could not load my music back on.
    I uninstalled / reinstalled iTunes and completely reformated the iPod drive.
    I successfully got my music and books back on but then added a new book two days ago only to discover everything got erased AGAIN!!!
    Of course, my 1 Year Warranty was up about a week before the first incident.....
    I formatted the iPod again, uninstalled / reinstalled iTunes (it was freezing during sync) and downloaded all my music and books again.
    Now I have several books that will not play (they play on iTunes and they played on the iPod before all these events) and the iPod does not keep track of where I was in a book when I have to stop and go to something else.
    Does anyone know what is going on with this thing???  I have a 5th Gen Video and in all the years I've had it, I've NEVER had problems like this! 
    Does anyone have any ideas on what I can do to get my iPod Classic up and running properly again?
    Thanks.

    When iTunes/iPod sync process failed due to timeout, the iPod, has only the initilaised  filesytem structure at the start of the Sync.
    The timeout failure could be due to
    Bad hardisk - do the iPod disk diagnostic, refer to this excellent post by tt2
    Slow USB port or resource - Dont use any USB hub, disconnect all other USB devices while syncing
    Timeout due to Antivirus or other plugins - disconnect from Internet and stop the Antivirus or monitoribng software if you are syncing.
    Preferably stop doing other things while syncing this ancient device, which the latest iTunes designer, think will soon be extinct.
    Have a nice day!

  • Does the Ipod nano 4th gen keep track of playcounts?

    I am not talking about how many times you play a song on the computer on itunes. but does the ipod itself keep track how many times you play a song on the ipod? where can i find this information?

    I did that, and it is completely the same. Here is pictures of it
    this right here is my top 25 for my ipod....
    http://img523.imageshack.us/img523/7069/top25onipodqg6.png
    what you see right here is teh same exact playcounts that is seen on my computer's top 25 when no ipod is connected. there are some wierd differences though, for example flashing lights on my ipod is played only like 5 times or something, whereas on the computer its number 3 played with 375 times played. also pepita(the song on the bottom of the list), is on my top 25 on my computer, but i have not played it yet on my ipod, and the ipod's top 25 accurately shows this. so basically the ipod's top 25 accurately tells teh playcounts for flashing lights and pepita, but not for the rest.
    can anyone make any sense of this? how do i find the playcounts for solely my ipod?
    Message was edited by: shugarhol1c
    Message was edited by: shugarhol1c
    Message was edited by: shugarhol1c

  • How to view Dehydration Store Performance in OEM 12c Cloud Control

    Hi All,
    I have installed OEM 12c Cloud Control.I want to view dehydration store performance for my fusion middleware domain.Can anyone please suggest me how can I achieve this?
    I have added the database, where soa schemas are created, as a monitored target in OEM 12c Cloud Control. Also have added Fusion middleware domain for which I want to view dehydration store management.
    Thanks in Advance!!
    Edited by: Roshni Shankar on Sep 19, 2012 5:26 AM

    You should open an SR and support can assist you with it. The only current case where that feature is known to not work is in the case where the Dehydration Store is running on RAC. Otherwise, it should be possible to get it to work. The main thing is that you need to have DB configuration properties (host, port, sid) that have a 3-way string match between the JDBC data source configuration in the WLS server, the JDBC properties you add to the Monitoring Properties of the SOA Infrastructure target, and the connect settings of the Database target in EM that matches to the dehydration DB.
    If there isn't a match in all 3, the Dehydration Diagnostics page will not work. But again, to look into your specific setup, you should file an SR and work with support.

Maybe you are looking for

  • Problems with the Complexe backup in FCPro X!!!!

    Hi there, I have 2 HD disks to backup my FCPX projects so...there's my problem/question: I create an Event. I create the original Project in one of my disks...I put clips from the event on the timeline, transitions, sounds...etc Now I backup the proj

  • Noob Chart Question

    Hello Once again. I have a request to show datatips/labels in a second chart when a user rollsover a complimentary datatip in the first chart is this possible?? If so how can it be done or where can I read about it? Thank you in advance.

  • Document needed for preparation of 1Z0-042 certification

    Hi All, I am a newbie. I have joined the forum few days back. I am preparing for Oracle certification 1Z0-042 and in search of some good documentation for the same. Please guide me in the same. Thanks & Regards, Deepak Pushkarna

  • Error in Dashboard "Your Office 365 password is not the same as your Windows password."

    I have 4 users using Windows Server 2012 and Office 365 for email.  All is going well,  but I am now getting the error listed in the title. When I first set this up, the passwords were the same, and integration worked very well.  After the users chan

  • ErrorRepor: A fatal error has been detected by the Java Runtime Environment

    JDeveloper IDE frequently generate crash report : A fatal error has been detected by the JRE # A fatal error has been detected by the Java Runtime Environment: # SIGSEGV (0xb) at pc=0x00007f8a6bdca6b9, pid=3013, tid=140232416401152 # JRE version: 6.0