How to use OEM location in OWB?

What is a purpose of oem location in owb 9.2 (9.0.4)?
This location doesn't use in any module and integration with oem realize through oem_exec_template.sql script that manually register in oem.
How to use this location?

Dmitry,
This location would be used in the process flow configuration of an individual activity. The location enables you to perform remote node execution. For example, if you wanted to execute SQL loader on a remote node (not the actual target machine) then this would happen via the OEM location. The use of the OEM location would require an Oracle Management Server (OMS) set up and OEM agents locally.
Mark.

Similar Messages

  • How to use OEM to moniter sql server 2000

    Hi,
    I need to learn How to use OEM to moniter sql server 2000.
    Can anyone help me and give me some website or documents
    to read?
    So I can learn to do this job.
    Thanks.

    See Note 115302.1 in Metalink.oracle.com
    in how to use OEM Diagnostic pack addon for SQL Server
    Or search for
    oem "user events"
    to build your own monitor script.

  • How i use OEM 12c to monitor Microsoft Active directory.

    Hi,
    How i use OEM 12c to monitor Microsoft Active directory.Please assist me on this.
    Thanks,
    Sagar

    Hi,
    The fundamental problem with this scenario is that you have non-failover capable modules in a failover chassis - think of the ASA failover pair as one device and the IPS modules as two completely separate devices.
    Then, as already mentioned, add only the primary ASA. (The secondary will never be passing traffic in standby mode so it's not actually needed in MARS) Then, with the first IPS module you can add it as a module of the ASA or as a standalone device (MARS doesn't care). With the second IPS module the only option is to add it as a separate device anyway.
    In a failover scenario the ASA's swap IP's but the IPS's don't so whereas you'll only ever get messages from the active ASA you'll get messages from both IPS IP's depending on which one happens to be in the active ASA at the time.
    Don't forget that you have to manually replicate all IPS configuration every time you make a change.
    HTH
    Andrew.

  • How to use a function in OWB 11.2

    Hello all,
    I need help running an Oracle function in OWB 11.2
    I have created and defined the parameters of the function within the design center by right clicking on function, new from the Projects Explorer window. I have also validated the Function and it was successful. I have also tested deploying the function to the database successfully.
    My question now is how do I implement it? ie how do I run it? the function is actually supposed to derive a column and load it into another column on the same table based on a condition
    Do I drag and drop it within the mapping? and link it? please help me!
    thanks so much
    IP
    Here is the code of the function:
    CREATE OR REPLACE FUNCTION "LD_EMPL_FOR_CITY"("EMP_STATE" IN VARCHAR2, "EMP_ADDR" IN VARCHAR2) RETURN VARCHAR2
    IS
    BEGIN
    IF EMP_STATE = '. ' THEN
    RETURN EMP_ADDR;
    ELSE
    RETURN NULL;
    END IF;
    END;
    /

    Thanks MKO.
    I dragged the function into the mapping and connected and it worked.
    I wish ORACEL can be a little bit more specific in it's documentation. I do not see where on how to use these transformations.
    Thanks again!

  • How to use OEM grid control to find any database not in archivelog mode?

    Hello,
    currently we have 130 databases, say, if I want to pick out any database currently NOT in archivelog mode, is there a quick way to find out ?
    by using OEM grid control
    or
    some trick similar,
    but really don't need to check each database manually.
    thank you very much!

    This query works in 12c - please run as SYSMAN.
    It is based on undocumented assumptions though +( AND key_value = 'NOARCHIVELOG')+.
      SELECT *
      FROM SYSMAN.MGMT$GROUP_DERIVED_MEMBERSHIPS O ,
        SYSMAN.MGMT$TARGET T ,
        sysman.MGMT$AVAILABILITY_CURRENT st
      WHERE
      o.member_target_type     IN ('oracle_database', 'rac_database')
      AND ( t.target_type           ='rac_database'
      OR (t.target_type             ='oracle_database'
      AND t.type_qualifier3        != 'RACINST'))
      AND o. member_target_guid     = t.target_guid
      AND t.target_guid             = st.target_guid
      AND st.availability_status    = 'Target Up'
      AND ( EXISTS
        (SELECT *
        FROM sysman.mgmt$metric_current i
        WHERE I.TARGET_GUID = O.MEMBER_TARGET_GUID
        AND metric_name     = 'archFull'
        AND Metric_Column   = 'archTotal'
        AND metric_label    = 'Archive Area'
        AND column_label    = 'Total Archive Area (KB)'
        AND key_value       = 'NOARCHIVELOG'
        ));Another way to achieve the goal is to push extended metrics (SELECT LOG_MODE FROM V$DATABASE) on each DB, and monitor the values they return to the repository. This is an example for a (slightly) different problem - http://iiotzov.wordpress.com/2012/08/08/how-to-use-the-new-oem-12c-metric-extensions-to-enforce-enterprise-wide-custom-policies .
    OEM Repository has many other great uses as well - http://iiotzov.files.wordpress.com/2012/05/oem-repository-a-second-look.doc , http://iiotzov.files.wordpress.com/2011/08/iotzov_oem_repository.pdf
    Iordan Iotzov
    http://iiotzov.wordpress.com/

  • How to use the location reminder

    When I first accessed the new reminders app I clicked 'do not use my location'. However, I want to use the location reminder, but I can not find it in my settings to change my preferences. Anyone know how to turn the location on? Does it even work on 3GS?

    This worked for me as well.  Thanks!
    shafir,
    I had the same problem. By trial and error I turned off the reminders coming from my work-place microsoft exchange server account in "Mail, Contacts, Calendars". Left mail, and calendar, contacts etc on but turned off reminders. The only reminders in "Mail, Contacts, Calendars" that I left on is in iCloud.
    The reminder app then appeared in the "location services" list and can be turned on.

  • How to use OEM to run a script against many targets and send result by emai

    Is there a way to use OEM to query the RMAN backup against many targets (databases) and have all the results send to you by a single email?
    The script is :
    SELECT a.instance_name, b.session_key, b.session_recid, b.session_stamp, b.command_id,
    b.status, b.start_time, b.time_taken_display, b.input_type,
    b.output_device_type, b.input_bytes_display, b.output_bytes_display,
    b.output_bytes_per_sec_display
    FROM
    v$instance a, V$RMAN_BACKUP_JOB_DETAILS b WHERE ( b.start_time > (SYSDATE - 30) ) order
    by b.start_time
    Thanks.

    Are you using a RMAN catalog? If not, you can used UDM's (this will be messy w/o a RMAN catalog) for what you want to do.
    What I started out doing was....
    You can create a UDM and push that UDM out to the targets you want. The problem with UDM's, is you can only pull 1 or 2values. I started down this same path and wrote a sql to concatenate the data into one value, such as
    SELECT '|'||input_type||'|'||status||'|'||start_time||'|'||end_time||'|'||ROUND(elapsed_seconds,2)||'|'||time_taken_display||'|'
    FROM v$rman_backup_job_details
    WHERE (INPUT_TYPE, START_TIME)
    IN
    ( SELECT input_type, MAX(START_TIME)
    FROM v$rman_backup_job_details
    GROUP BY INPUT_TYPE
    AND INPUT_TYPE = 'DB FULL';
    Do not put any warning/critical thresholds in the UDM and just let OEM Agent gather the data and pull it back into the SYSMAN repository.
    You can then look at this view, SYSMAN. MGMT$METRIC_DETAILS to find the correct SQL to pull out the data you need. This view is made up of a 4 way union between 4 sql's. Once you find the SQL you need, then you can pull this information out and into a custom table of your own.
    Once you have data into another table, you will then have to extract the concatenated string out, parse it out and report on it. This is where I stopped and said there has to be a better way.
    I then thought about it and the RMAN catalog has all this, assuming you are using a RMAN Catalog.
    I wrote a piece of dynamic sql to loop through the rman catalog to pull this out into a historical table and store the data. Then I can report on it from there. If you have a RMAN catalog, this works much better.
    I also use UDM's to use OEM as a data extract tool to pull the number of archivelogs and bytes my databases create on an hourly basis. I pull 2 values, bytes and # of logs. So this works well with UDM's, don't have to concatenate a bunch of values and then parse it back out again.
    I push this UDM to all databases, and have it run hourly. Then daily, I extract this information into a custom table and then use analytic functions to determine how much space is needed on the db servers for archivelogs for a 24 hour time frame. This helps with sizing our log destinations and gives us legitimate reports for Storage teams.
    I can also build reports on how many archive logs are generated on a daily, weekly, monthly basis per database. Good for analysis and charge back methods.

  • How to use csv files in OWB

    Hi Experts
    I have one UNIX server and i my user is putting the csv files on windows machine. I want
    1. If User put some new csv file in windows machine it should automatically reflect in UNIX machine.
    2. If user enter some data in windows csv files then it should be reflect in UNIX csv files automatically
    3. Now I want to connect my OWB with these UNIX csv fils. my csv files are in /home/oracle.source directory.
    Regards
    Frnd

    Let me give an insight of how it works for me:
    1. A CSV file is created in unix at a specified location.
    2. Using ULTRAEDIT software(installed on windows client) FTP is configured to access the unix server.
    3. Open the file stored in unix through ULTRAEDIT from windows.
    4. MAKE changes to the file from ultraedit in windows.
    5. SAVE it and close ULTRAEDIT.
    The changes will be automatically reflected in unix without having the need to FTP it.
    OWB accesses the CSV file from unix and does further processing.
    Not sure if OPs can do this but this is probably the easiest way of achieving what he wants and this approach works very well for me.

  • How to use OEM RESERVED

    Guys
    I have a Lenovo laptop running Windows 7 Home Basic 64 bit
    Then I want to upgrade it to ultimate so I install Windows 7 Ultimate 64 bit , when installing I see a drive namely "OEM Reserved" I can't remember the other details
    I just want to know what it is?? What's its function??
    Does it have a connection to my previous OS??
    Does it affect the performance of my laptop running with the new OS?
    I have noticed that my log on screen before is
    But now in my new OS the word "Lenovo" from log on screen has gone. .
    and also in my computer properties
    I wonder that the OEM has a connection to OS and I guess my OEM is useless that's why I'm asking for your help . .
    Thanks for reading
    Thanks in advanced to all of you. .

    Lenovo won't show on the boot screen because you installed windows freshly from dvd.    Lenovo suddenly had nothing to do with your opperating system or your windows install when you did the ultimate install.   Had you bought the ultimate online upgrade from microsoft, it still would have the Lenovo branding..
    OEM Drive is your One Key Image you made when the computer was brand new for the regressed one key button or the start up disc you made to reinstall the opperating system fresh to factory new.   In your case, not to Ultimate, if it still works at all.   You cant see the contents of the OEM drive without some more settings.. or maybe simply use something like Tiny Tools Partition Manager to browse it.
    You could stuff an image of your Ultimate in there..  if you were to read up on the program you need to do it here... http://forums.lenovo.com/t5/Lenovo-3000-and-Essential/Disk-Partitioning-and-OneKey-Recovery-Feature/...

  • How to use external procedures in OWB Mapping

    Hi,
    Does anyone have an exmple of using external procdures in Mapping.
    Thanks
    mandi

    Hi Mandi,
    you can use Public and self created external Procedures/Functions in a Mapping.
    You can integrate them in Expressions, e.g.
    or use them as Post or Premapping in a Mapping.
    It´s simple, just play a bit :-)
    Only on a few Things you´ve to watch:
    Every external Objects you want to use in a Mapping must be known in the Metadatas.
    If you create a Mapping under the User scott,(e.g.), and you want to use
    an external Procedures/Functions from the User Tiger,(e.g.), you must make sure
    that theres a connection between these two Schematas.
    For such things you can create a Connector in the Control Center.
    Regards
    Lone

  • How to use locate my i pad mini

    How to use locate my ipad mini

    Hello angeleigh4,
    It seems you would like to learn how to use the location features of iCloud to find an iOS device. The following article will instruct you on how Find My iPhone works: 
    iCloud: Find My iPhone overview
    Find My iPhone helps you locate and protect your iPhone, iPad, iPod touch, or Mac if it’s ever lost or stolen. With Find My iPhone set up on your device, you can do the following:
    Locate your device on a map
    Play a sound on your device to help you find it
    Use Lost Mode to lock and track your device
    Note: If you put your iPhone 6 or iPhone 6 Plus in Lost Mode and you have credit and debit cards in Passbook for Apple Pay, Find My iPhone attempts to suspend your cards immediately, even if your iPhone is offline.
    Remotely erase all of your personal information from the device
    Note: If you erase your iPhone 6 or iPhone 6 Plus and you have credit and debit cards in Passbook for Apple Pay, Find My iPhone attempts to remove your cards immediately, even if your iPhone is offline.
    If you’re a member of a Family Sharing group, you can also use Find My iPhone to help find and protect your family members’ iOS 8 devices and Mac computers with OS X Yosemite. Family devices and computers must be set up to share their locations with other family members. For more information, see Set up Find My iPhone.
    When you set up Find My iPhone, Activation Lock is turned on automatically. Activation Lock makes it harder for anyone to use or sell your iPhone, iPad, or iPod touch if it’s ever lost or stolen. For more information, see the Apple Support article Find My iPhone Activation Lock.
    Access Find My iPhone
    Access Find My iPhone from any computer at icloud.com/#find, or download and use the free Find My iPhone iOS app. When accessing Find My iPhone from a computer, make sure you use a browser recommended in the Apple Support article System requirements for iCloud.
    Apple Support article: Troubleshooting Find My iPhone
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • Using OEM to monitor Data Guard database

    Can someone please send me the link or docs of how to use OEM monitoring data guard? In specific, I would like to use OEM to monitor and be sure logs are applying to stand by site.
    Any ideas?

    Hello ,
    I will extend the document on the Fast Failover feature one of these days.
    What you need to do is:
    For using Fast Failover, you need to configure the Data Guard observer process.
    The configuration of this process can be done by selecting the Fast-Start Failover Disabled link on the Data Guard page of the database (Primary or Standby).
    You will be automatically redirected to the Fast-Start Failover: Configure Page.
    From this page you can do the configuration of the DG observer process, that then will enable you to activate the Fast Failover feature.
    Regards
    Rob
    http://oemgc.wordpress.com

  • How to run an OWB 11gR2 process flow using OEMS Jobs?

    How to run an OWB 11gR2 process flow using OEMS 11g Jobs?
    In other words iam trying to create an Oracle Enterprise manager job for scheduling and running an OWB Process flow.
    Can any one of you please route me to a documentation for the same,or enlist the steps involved?

    Hi,
    look at OWB API Reference (it is of 11gR1 OWB release but you can apply this procedure to OWB11gR2 as well)
    http://download.oracle.com/docs/cd/B28359_01/owb.111/b31279/api_4sqlforjobs.htm#BABEBGHA
    Regards,
    oleg

  • I am trying to use the locate my macbook that was stolen. How do I know if it is set up on the service. It shows on the list but just says it is offline and doesn't say when or where it last was. I am trying to either locate it or erase it. HELP

    I am trying to use the locate my macbook that was stolen. How do I know if it is set up on the service. It shows on the list but just says it is offline and doesn't say when or where it last was. I am trying to either locate it or erase it. HELP

    Since you can see it in your device list it must have Find My Mac activated, but you're going to have to wait for them to take it online in order to either locate, lock or wipe it. Until it goes online you can't do anything. http://www.apple.com/support/icloud/find-my-device/
    iCloud: Locate your device

  • Where do I use my Apple Id to locate workshops in San Antonio, TX on how to use my Iphone 4?

    Where do I use my Apple Id to locate workshops in San Antonio, TX on how to use my Iphone 4?

    You don't need an AppleID for this.  Just visit your neareast retail store and attend a workshop.

Maybe you are looking for

  • AR Report Requirement - Customer Credit Management - 0FI_AR_9

    HI There, We have a requirement in AR report to add the below fields from Customer Credit Management Datasource 0FI_AR_9 KNKLI - Credit Control Account- 0CRED_ACCNT      KLIMK - Credit Limit - 0CRED_LIMIT CTLPC - Risk Category     -  0RISK_CATEG     

  • "fire wire" video capture cards for mac pro

    ....Have Power Mac ver. 10.9.5 system Maverick w/ 4 MB RAM & am trying to locate hardware for: acquiring "FIRE WIRE" video capture cards for mac pro.... ? Any suggestions....?(Just purchased Adobe CS 5 premium)

  • Join 3 tables or series of queries... need help asap

    hi guys here's my case... i have 3 tables, t1, t2 & t3 with the ff. columns... t1.acct_no | t1.acct_stat | .... 1234     D t2.acct_no | t2.rdg_date | t2.rdg | .... 1234     5.5.2008 30 1234 4.5.2008 28 t3.acct_no | t3.cur_rdg_date | t3.cur_rdg | ....

  • Assuming the worst of me...

    Hi all! I posted yesterday on the iMovie forum asking how to get my home movies off of a DVD and on to my computer. I want to be able to manipulate the movies and edit them (I had a professional convert all my VHS tapes to DVD, as I do not have the r

  • Mac G4 upgrading

    Hello everybody, I've wanted a MAC for quite some time now ever since I've owned an iPod for which I'd like to develop software. However any of the newer macs and macbooks were too expensive for me. Lucky as I got, my uncle wanted to give me and old