Converting 8i Jobs to 10g Grid

All,
I have over 300 jobs in an 8i OEM repository. I want to start using 10g Grid Control and Enterprise Manger but really do not want to recreate all these jobs in the new responsitory. Is there a conversion or upgrade script that does this.. or some procedure someone has used?
Thanks
Steve

Significant changes in the internals. Such as, iirc, OEM 1 & 2 used TKL/TCL whereas the new one uses PERL.
Makes me wonder whether someone has created a TKL to Perl converter. Google?

Similar Messages

  • Oracle 10g grid - Job details

    Hi,
    I logged into the Grid as SYSMAN and added 2 targets(A and B). I created 2 jobs related to target A and 2 jobs related to target B.
    1. Where can I find the details of these 4 jobs? i.e., which system tables have these information like job name, execution date, error details if any. I appreciate your help.
    2. is there any issue related to job status in grid? always it is showing succeeded even if the attached procedure has the divided by zero error. Is there any workaround for this?
    Thanks, Jay.

    The following query might help:
    jobs output run within last 24 hours:
    SELECT job_name,
    start_time,
    end_time,
    target_name,
    target_type,
    STATUS,
    OUTPUT
    FROM mgmt$job_step_history
    WHERE to_date(start_time) BETWEEN to_date(sysdate -1)
    AND to_date(sysdate)
    order by 1
    Datatype of field output is clob and therefore difficult to display. You can use Toad to run this query which shows output in a popup window, just double click in the output column and it would display the popup.

  • Guide to External Jobs on 10g with dbms_scheduler e.g. scripts,batch files

    GUIDE TO RUNNING EXTERNAL JOBS ON 10g WITH DBMS_SCHEDULER
    NOTE: Users using 11g should use the new method of specifying a credential which eliminates many of the issues mentioned in this note.
    This guide covers several common questions and problems encountered when using
    dbms_scheduler to run external jobs, either on Windows or on UNIX.
    What operating system (OS) user does the job run as ?
    External jobs which have a credential (available in 11g) run as the user
    specified in the credential. But for jobs without credentials including
    all jobs in 10gR1 and 10gR2 there are several cases.
    - On UNIX systems, in releases including and after 10.2.0.2 there is a file $ORACLE_HOME/rdbms/admin/externaljob.ora . All external jobs not in the SYS schema and with no credential run as the user and group specified in this file. This should be nobody:nobody by default.
    - On UNIX systems, in releases prior to 10.2.0.2 there was no "externaljob.ora" file. In this case all external jobs not in the SYS schema and with no credential run as the owner and group of the $ORACLE_HOME/bin/extjob file which should be setuid and setgid. By default extjob is owned by nobody:nobody except for oracle-xe where it is owned by oracle:oraclegroup and is not setuid/setgid.
    - On Windows, external jobs not in the SYS schema and with no credential run as the user that the OracleJobScheduler Windows service runs as. This service must be started before these jobs can run.
    - In all releases on both Windows and UNIX systems, external jobs in the SYS schema without a credential run as the oracle user.
    What errors are reported in SCHEDULERJOB_RUN_DETAILS views ?
    If a job fails, the first place to look for diagnostic information is the SCHEDULERJOB_RUN_DETAILS set of views. In 10gR2 and up the first 200 characters of the standard error stream is included in the additional_info column.
    In all releases, the error number returned by the job is converted into a
    system error message (e.g. errno.h on UNIX or net helpmsg on Windows) and that
    system error message is recorded in the additional info column. If there is no
    corresponding message the number is displayed.
    In 11g and up the error number returned by the job is additionally recorded in
    the error# column. In earlier releases 27369 would always be recorded in the
    error# column.
    Generic Issues Applicable to UNIX and Windows
    - The job action (script or executable) must return 0 or the job run will be marked as failed.
    - Always use the full pathname to executables and scripts.
    - Do not count on environment variables being set in your job. Make sure that the script or executable that your jobs runs sets all required environment variables including ORACLE_HOME, ORACLE_SID, PATH etc.
    - It is not recommended to pass in a complete command line including arguments as the action. Instead it is recommended to pass in only the path to and name of the executable and to pass in arguments as job argument values.
    - Scripts with special characters in the execution path or script name may give problems.
    - Ensure that the OS user your job runs as has the required privileges/permissions to run your job. See above for how to tell who the job runs as.
    - External job actions cannot contain redirection operators e.g. > < >> | && ||
    - In general try getting a simple external job working first e.g. /bin/echo or ipconfig.exe on Windows. Also try running the job action directly from the commandline as the OS user that the job will run as.
    Windows-specific Issues
    - The OracleJobScheduler Windows service must be started before external jobs will run (except for jobs in the SYS schema and jobs with credentials).
    - The user that the OracleJobScheduler Windows service runs as must have the "Log on as batch job" Windows privilege.
    - A batch file (ending in .bat) cannot be called directly by the Scheduler. Instead cmd.exe must be used and the name of the batch file passed in as an argument. For example
    begin
    dbms_scheduler.create_job('myjob',
       job_action=>'C:\WINDOWS\SYSTEM32\CMD.EXE',
       number_of_arguments=>3,
       job_type=>'executable', enabled=>false);
    dbms_scheduler.set_job_argument_value('myjob',1,'/q');
    dbms_scheduler.set_job_argument_value('myjob',2,'/c');
    dbms_scheduler.set_job_argument_value('myjob',3,'c:\temp\test.bat');
    dbms_scheduler.enable('myjob');
    end;
    /- In 10gR1 external jobs that wrote to standard output or standard error streams would sometimes return errors. Redirect to files or suppress all output and error messages when using 10gR1 to run external jobs.
    UNIX-specific Issues
    - When running scripts, make sure that the executable bit is set.
    - When running scripts directly, make sure that the first line of the script in a valid shebang line - starting with "#!" and containing the interpreter for the script.
    - In release 10.2.0.1, jobs creating a large amount of standard error text may hang when running (this was fixed in the first 10.2.0.2 patchset). If you are seeing this issue, redirect standard error to a file in your job. This issue has been seen when running the expdp utility which may produce large amounts of standard error text.
    - the user that the job runs as (see above section) must have execute access on $ORACLE_HOME/bin and all parent directories. If this is not the case the job may be reported as failed or hang in a running state. For example if your $ORACLE_HOME is /opt/oracle/db then you would have to make sure that
    chmod a+rx /opt
    chmod a+rx /opt/oracle
    chmod a+rx /opt/oracle/db
    chmod a+rx /opt/oracle/db/bin
    - On oracle-xe, the primary group of your oracle user (if it exists) must be dba before you install oracle-xe for external jobs to work. If you have an oracle user from a regular Oracle installation it may have the primary group set to oinstall.
    - On oracle-xe, the extjobo executable is missing so external jobs in the SYS schema will not work properly. This can be fixed by copying the extjob executable to extjobo in the same directory ($ORACLE_HOME/bin).
    - Check that correct permissions are set for external job files - extjob and externaljob.ora (see below)
    Correct permissions for extjob and externaljob.ora on UNIX
    There is some confusion as to what correct permissions are for external job related files.
    In 10gR1 and 10.2.0.1 :
    - rdbms/admin/externaljob.ora should not exist
    - bin/extjob should be setuid and setgid 6550 (r-sr-s---). It should be owned by the user that jobs should run as and by the group that jobs should run as.
    - bin/extjobo should have normal 755 (rwxr-xr-x) permissions and be owned by oracle:oraclegroup
    In 10.2.0.2 and higher
    - rdbms/admin/externaljob.ora file must must be owned by root:oraclegroup and be writable only by the owner i.e. 644 (rw-r--r--) It must contain at least two lines: one specifying the run-user and one specifying the run-group.
    - bin/extjob file must be also owned by root:oraclegroup but must be setuid i.e. 4750 (-rwsr-x---)
    - bin/extjobo should have normal 755 (rwxr-xr-x) permissions and be owned by oracle:oraclegroup
    In 11g and higher
    Same as 10.2.0.2 but additionally bin/jssu should exist with root setuid
    permissions i.e. owned by root:oraclegroup with 4750 (-rwsr-x---)
    Internal Error numbers for UNIX on 10.2.0.2 or 10.1.0.6 or higher
    If you are not using a credential and are using version 10.2.0.2 or higher or 10.1.0.6 or higher you may come across an internal error number. Here are the meanings for the internal error numbers.
    274661 - can't get owner of or permissions of externaljob.ora file
    274662 - not running as root or externaljob.ora file is writable by group or other or externaljob.ora file not owned by root (can't switch user)
    274663 - setting the group or effective group failed
    274664 - setting the user or effective user failed
    274665 - a user or group id was not changed successfully
    274666 - cannot access or open externaljob.ora file
    274667 - invalid run_user specified in externaljob.ora file
    274668 - invalid run_group specified in externaljob.ora file
    274669 - error parsing externaljob.ora file
    274670 - extjobo is running as root user or group

    Hi Ravi,
    Can you help me...
    Hi All,
    I planned to create a job to do rman backup daily at 04:00 AM.
    1. I created a program as follows
    BEGIN
    DBMS_SCHEDULER.CREATE_PROGRAM(
    program_name => 'rman_backup_prg',
    program_action => '/u02/rmanback/rman.sh',
    program_type => 'EXECUTABLE',
    comments => 'RMAN BACKUP');
    END;
    my rman script is
    #!/usr/bin/ksh
    export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
    export PATH=$PATH:/u01/app/oracle/product/10.2.0/db_1/bin
    /u01/app/oracle/product/10.2.0/db_1/bin/exp rman/cat@catdb file=/u02/rmanback/rm
    an_220108.dmp log=/u02/rmanback/rman_220108.log owner=rman statistics=none comp
    ress=n buffer=400000
    compress *.dmp
    exit
    2. I created a schedule as follows
    BEGIN
    DBMS_SCHEDULER.CREATE_SCHEDULE(
    schedule_name => 'rman_backup_schedule',
    start_date => SYSTIMESTAMP,
    end_date => '31-DEC-16 05.00.00 AM',
    repeat_interval => 'FREQ=DAILY; BYHOUR=4',
    comments => 'Every day at 4 am');
    END;
    3. I created ajob as follows.
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB (
    job_name => 'rman_backup_job',
    program_name => 'rman_backup_prg',
    schedule_name => 'rman_backup_schedule',
    enabled=> true,
    auto_drop=> false
    END;
    While I am running the job I am getting the following error anybody help me.
    ORA-27369: job of type EXECUTABLE failed with exit code: Not owner
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 2
    If I removed "compress *.dmp" line in rman script it is working fine.
    /* additional Info from dba_scheduler_job_run_details as follows */
    ORA-27369: job of type EXECUTABLE failed with exit code: Not owner
    STANDARD_ERROR="
    Export: Release 10.2.0.3.0 - Production on Tue Jan 22 14:30:08 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Release 10.2.0.3.0 - Production
    Export"
    Regards,
    Kiran

  • Need help (10g Grid)

    Hi
    I need some information about oracle database 10g grid control configuration.
    Mohsin

    Allegedly you can use an Oracle 10.1.0.3 database for grid control, but when I tried this it kept complaining that the stats gathering job had been submitted and I couldn't use the database as a repository until I had removed that job.
    So it can be done, you may just need to check the docs on using 10.1.0.3 before you do so.
    But if anyone can post the steps to installing Grid Control using a 10.1.0.3 database I will try again.
    Thanks,
    Alan...

  • 10g Grid E-Mail configuration

    hello,
    we have setup all our backup jobs scheduled through 10g grid... We would like to send e-mail when the jobs failed or suceeced..
    how do we configure e-mail on scheduled batch jobs??
    james

    Login to Console -Setup- Notifications Methods:
    Fill in the Outgoing Mail (SMTP) Serve/ Identify Sender As/Sender's E-mail Address
    2.Create notification rule:
    Login to Console -Preferences - Rules -Create
    -> click on Jobs tab-->
    - choose 'Jobs by criteria' --> Go
    - Job Name: provide part of the job name followed by % (Example: %BACK%) --> all jobs having
    'BACKUP' in its name will be enabled for notification
    OR
    provide the entire name --> that particular job will be enabled for notification when it runs
    the next time.
    3. Subscribe to this rule:
    Check the check box -> Subscribe (Send E-Mail)
    4. Define an email address:
    Login to Console -Preferences-General E-mail Addresses
    5. Define the schedule
    Login to Console -Preferences- Schedule

  • New Grid Installation & Copy/Migration Of Existing Jobs From Old Grid

    Existing Setup:*
    EM Grid Control: 10.2.0.2 Hosted on Windows 2003
    Repository Database: 10.2.0.3 Hosted on AIX 5.1
    Agent: 10.2.0.2
    Monitored Databases/servers: About 90 servers/databases are monitored which are on AIX and having 10g DB version and agant installed in 10.2.0.2
    Proposed Setup:_
    EM Grid Control: 10.2.0.5 Will be hosted on AIX 6.1
    Repository Database: 10.2.0.4 Will be hosted on AIX 6.1 (different server from EM Grid control server)
    Agent: 10.2.0.5
    Monitored Databases/servers: All the existing servers + Oracle E-business Application
    We are planing to install a new grid with option of installing with existing database(New 10.2.0.4 database will be installed). Once new grid start working properly, we will stop old grid.
    During this process we don't want to stop/modify/change the existing grid jobs..
    So, My questions are:
    1) Can we have two agents (both with different OS users and having different AGENT_HOMES) on each server, which will feed to different grids? Old one will be stopped eventually.
    2) How we can copy/migrate existing jobs from old grid to new grid ?

    Can you point me towards any document or link for same.
    Any idea for copy/migration of jobs from old grid to new grid....

  • Installing New Grid & Copy/Migrate Jobs From New Grid

    Existing Setup:_
    EM Grid Control: 10.2.0.2 Hosted on Windows 2003
    Repository Database: 10.2.0.3 Hosted on AIX 5.1
    Agent: 10.2.0.2
    Monitored Databases/servers: About 90 servers/databases are monitored which are on AIX and having 10g DB version and agant installed in 10.2.0.2
    Proposed Setup:_
    EM Grid Control: 10.2.0.5 Will be hosted on AIX 6.1
    Repository Database: 10.2.0.4 Will be hosted on AIX 6.1 (different server from EM Grid control server)
    Agent: 10.2.0.5
    Monitored Databases/servers: All the existing servers + Oracle E-business Application
    We are planing to install a new grid with option of installing with existing database(New 10.2.0.4 database will be installed). Once new grid start working properly, we will stop old grid.
    During this process we don't want to stop/modify/change the existing grid jobs..
    So, My questions are:
    1) Can we have two agents (both with different OS users and having different AGENT_HOMES) on each server, which will feed to different grids? Old one will be stopped eventually.
    2) How we can copy/migrate existing jobs from old grid to new grid ?

    >
    >
    We are planing to install a new grid with option of installing with existing database(New 10.2.0.4 database will be installed). Once new grid start working properly, we will stop old grid.
    During this process we don't want to stop/modify/change the existing grid jobs..
    ---- When you the existing database option , new repository will be created with user SYSMAN.
    So, My questions are:
    1) Can we have two agents (both with different OS users and having different AGENT_HOMES) on each server, which will feed to different grids? Old one will be stopped eventually.--- You have two different agents home on each server as source to different grids.
    2) How we can copy/migrate existing jobs from old grid to new grid ?--- You can clone the database and use the cloned database jobs for your new grid. Even cloned database can be used for your new grid.

  • Oracle 10g Grid Control Installation On RedHat Advanced Server 3.0

    I am planing to install Enterprise Manager 10g Grid Control Release 1 (v10.1.0.3)
    on RedHat Advanced Server 3.0. The agent I am trying to download is showing version 10.1.0.4.1. I am not sure iof this agent is going to work with (v10.1.0.3). Pl. let me know if someone has performed this installation. Do I need to apply any patch on OEM and agent.
    Thanks
    Raj

    Actually, entirely the other way around, unless you like seeing errors in your OMS.
    OMS must be at at least the same patch level as the communicating agents.
    10.1.0.3 agent against a 10.1.0.4 OMS = OK
    10.1.0.4 agent against a 10.1.0.3 OMS = Bad mojo
    Download the 10.1.0.4.1 patchset from Metalink and update your OMS, or stick with the 10.1.0.3 agent if you've no access to metalink.

  • How to stop a running job in 10g Scheduler?

    The following is a duplicate post. I posted the following to the general database forum before seeing that otn has a new scheduler forum:
    I am not able to find in the Admin Guide a method to stop a currently running instance of a job in the 10g scheduler.
    In 9i, I run the following script calling DBMS_JOB.broken and DBMS_JOB.remove to shut down currently running jobs:
    DECLARE
    jobid NUMBER;
    CURSOR c1
    IS
    SELECT job
    FROM dba_jobs
    WHERE priv_user = 'ME';
    BEGIN
    OPEN c1;
    LOOP
    FETCH c1
    INTO jobid;
    EXIT WHEN c1%NOTFOUND;
    DBMS_JOB.broken (jobid, TRUE);
    COMMIT;
    DBMS_JOB.remove (jobid);
    COMMIT;
    END LOOP;
    CLOSE c1;
    END;
    How may I create similar code to shut down currently running jobs using DBMS_SCHEDULER in 10g? According to the Admin Guide, disabling jobs with the force option will still allow the job to finish.
    How can I terminate a running job in 10g?

    You can stop a currently running job using the STOP_JOB api.
    STOP_JOB Procedure
    This procedure stops currently running jobs or all jobs in a job class. Any instance of the job will be stopped. After stopping the job, the state of a one-time job will be set to SUCCEEDED whereas the state of a repeating job will be set to SCHEDULED or COMPLETED depending on whether the next run of the job is scheduled.
    Syntax
    DBMS_SCHEDULER.STOP_JOB (
    job_name IN VARCHAR2
    force IN BOOLEAN DEFAULT FALSE);
    Parameters
    Table 83-44 STOP_JOB Procedure Parameters
    Parameter Description
    job_name
    The name of the job or job class. Can be a comma-delimited list. For a job class, the SYS schema should be specified.
    If the name of a job class is specified, the jobs that belong to that job class are stopped. The job class is not affected by this call.
    force
    If force is set to FALSE, the Scheduler tries to gracefully stop the job using an interrupt mechanism. This method gives control back to the slave process, which can update the status of the job in the job queue to stopped. If this fails, an error is returned.
    If force is set to TRUE, the Scheduler will immediately terminate the job slave. Oracle recommends that STOP_JOB with force set to TRUE be used only after a STOP_JOB with force set to FALSE has failed.
    Use of the force option requires the MANAGE SCHEDULER system privilege.
    Setting force to TRUE is not supported for jobs of type executable.
    Usage Notes
    STOP_JOB without the force option requires that you be the owner of the job or have ALTER privileges on that job. You can also stop a job if you have the CREATE ANY JOB or MANAGE SCHEDULER privilege.
    STOP_JOB with the force option requires that have the MANAGE SCHEDULER privilege.

  • How to setup Oracle 10g grid on a node other than SERVER

    Hi,
    We are in a process of moving the database residing on Windows servers to IBM AIX5L servers. For this purpose I came up with an idea of installing database on AIX and operate it remotely on Windows platform using 10g Grid Control and 10g Client. For this to happen perfectly, I am in middle of implementing same concept on Windows platfrom. I have made a test database on a Windows based server and I am trying to connect it with another Window based node. I know hwo to connect it using a client software but I am more interested to do it on Grid Control.
    At this stage, I have created database on server and have also configured Oracle Management Agent along with Oracle 10g Grid Control. I read oracle documentation that it is necessary to install Oracle Management Agent on server machine in order to let other nodes get connected with the server.
    I would extremely appreciate anyone who could help me in setting up 10g grid control on another node. Please note I wish to operate the database using grid control remotely. For know you can consider both computers on same network, I will go on VPN once I am able to do it on local network.
    Looking forward for your reply
    Shez

    Hi Xaheer,
    Thanks for looking into this matter. I had agent and grid running on the server and I have almost installed 10g Grid control 10.2.0.2. The place where I am stuck now is the OMS Configuration script that run after the installation in Configuration Assistant window. It just stuck here for some minutes and then displays the error. Let me paste here the lines in that appears in the detail panel of installation wizard.
    Output generated from configuration assistant "OMS Configuration"
    Command = oracle.sysman.emcp.oms.OmsPlugIn -configureOms
    Operation Stopping OPMN Processes is in progress.
    Operation EM Deploying is in progress.
    Operation Creating OMS Respository is in progress.
    Configuration assistant "OMS Configuration" failed
    The "d:\OracleHomes\agent10g\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------
    According to the oracle installation guide, I had to deconfigure the database before running the setup. I did it using this command,
    emca -deconfig dbcontrol db -repos drop
    AS far as i think, I am getting this error becouse of sysman schema which was droped during the installation and was recreated( as I read in the oracle installation guide ) is not found by the script. So in order to b ring back sysman schema, I recreated the repository using following commands.
    emca -deconfig dbcontrol db -repos drop
    emca -config dbcontrol db -repos create
    Now, the database on server is not starting up. I can just see RED downword error, u know what i mean right ? Everyting is down, Database instance, Listener and Agent Connection to Instance, and on the top pf page I can see " Enterprise Manager is not able to connect to the database instance. The state of the components are listed below."
    When I try to startup the database using the grid control it gives me this error.
    Couldnot contact the agent. Verify that the url for the agent is null.
    I am stuck in here. If you know how to fix this agent , i would really appreciate that.
    Thanks

  • Error while installing Oracle 10G Grid control in RHEL

    I was installing Oracle 10G Grid control in RHEL. Got the following error. Any idea what this means and what is the remedy?
    =======================================
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    /home/oracle/jre/1.1.8/bin/../bin/i686/native_threads/jre: relocation error: /home/oracle/jre/1.1.8/bin/../lib/i686/native_threads/libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference
    Configuration assistant "Oracle Net Configuration Assistant" failed
    =======================================
    regards,
    Anjan

    I saw this once but I forgot how I solved it. I believe that I made a softlink to the libc.so.6 from another libc. Have a look on Metalink, becauses I've got the idea for my solution there.
    cu
    Andreas

  • Error while installing oracle 10g grid on windows

    hi all,
    when i am installing oracle 10g grid i got the error that
    "Configuration assistant "OMS Configuration" failed "
    when i saw the log
    it has been mentioned the failed to create repos user.
    this is the out put of the log
    [14-02-2008 11:51:55] Enter SYS user's password :
    [14-02-2008 11:51:55]
    [14-02-2008 11:51:55] Enter repository user password :
    [14-02-2008 11:51:55]
    [14-02-2008 11:51:55] Enter MetaLink user password :
    [14-02-2008 11:51:55]
    [14-02-2008 11:51:55] Getting temporary tablespace from database...
    [14-02-2008 11:51:55] Found temporary tablespace: TEMP
    [14-02-2008 11:51:55] Checking SYS Credentials ...
    [14-02-2008 11:51:56] OK.
    [14-02-2008 11:51:56] Checking DB Init Parameters ...
    [14-02-2008 11:51:56] OK.
    [14-02-2008 11:51:56] Checking for Repos User ...
    [14-02-2008 11:51:56] Does not Exist.
    [14-02-2008 11:51:56] Loading necessary DB objects ...
    [14-02-2008 11:51:56] Checking DB Object (DBMS_SHARED_POOL , PACKAGE) ...
    [14-02-2008 11:51:56] Done Loading necessary DB objects
    [14-02-2008 11:51:56] Creating repos user ...
    DECLARE
    ERROR at line 1:
    ORA-01119: error in creating database file
    'E:\oraclegrid\oms10g\oradata\mgmt.dbf'
    ORA-27040: file create error, unable to create file
    OSD-04002: unable to open file
    O/S-Error: (OS 3) The system cannot find the path specified.
    ORA-06512: at line 44
    [14-02-2008 11:51:57] Failed.
    [14-02-2008 11:51:57] Repository Creation failed. Failed to create Repos User.
    all users and everyone has full permission on this folder, i don't know why it is giving,
    please any one help me out i am stuck in the middle of the installation
    oracle 10g grid version is 10.1
    please reply to this
    Regards,
    Veeresh S

    this is the output what i get in oui:configuration assistants
    Output generated from configuration assistant "OMS Configuration" (attempt 6):
    Command = oracle.sysman.emcp.oms.OmsPlugIn -configureOms
    Operation Stopping OPMN Processes is in progress.
    Operation EM Deploying is in progress.
    Operation Creating OMS Respository is in progress.
    Configuration assistant "OMS Configuration" failed
    The "E:\oraclegrid\agent10g\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-------------------------------------------------------------------------------
    when i saw this E:\oraclegrid\agent10g\cfgtoollogs\configToolFailedCommands file
    the below 2 lines was mentioned in that file.
    rem Copyright (c) 1999, 2006, Oracle. All rights reserved.
    oracle.sysman.emcp.agent.AgentPlugIn
    this below log i got in E:\oraclegrid\agent10g\cfgtoollogs\cfgfw\CfmLogger_2008-02-14_10-28-34-AM.log file
    i have pasted last lines of the files.
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 0 have been completed with status=true
    INFO: oracle.sysman.top.oms:deployOms:Already deployed, skipped.
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 1 have been completed with status=true
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 2 have been completed with status=true
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action drop -repos_user SYSMAN -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_drop12_19_36.log
    INFO: oracle.sysman.top.oms:PerformSecureCommand:drain:Spaced passwords by=100 ms
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action drop -repos_user SYSMAN -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_drop12_19_36.log have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'Enter SYS user's password :
    Getting temporary tablespace from database...
    Found temporary tablespace: TEMP
    Checking SYS Credentials ... OK.
    Dropping the repository..
    Quiescing DB ... Done.
    Checking for Repos User ... Does not Exist.
    Repos User does not exist ... Continuing with cleanup ...
    Dropping Roles/Synonymns/Tablespaces ... Done.
    Unquiescing DB ... Done.
    Dropped Repository Successfully.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    ''stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action create -repos_user SYSMAN -metalink_username NOTAVAILABLE_ -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log -ecm_datafile E:\oraclegrid\oms10g\oradata\mgmt_ecm_depot1.dbf -datafile E:\oraclegrid\oms10g\oradata\mgmt.dbf
    INFO: oracle.sysman.top.oms:PerformSecureCommand:drain:Spaced passwords by=200 ms
    INFO: oracle.sysman.top.oms:RepManager Create Repository Error = E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action create -repos_user SYSMAN -metalink_username NOTAVAILABLE_ -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log -ecm_datafile E:\oraclegrid\oms10g\oradata\mgmt_ecm_depot1.dbf -datafile E:\oraclegrid\oms10g\oradata\mgmt.dbf . Please check the log file at 12
    'Enter SYS user's password :
    Enter repository user password :
    Enter MetaLink user password :
    Getting temporary tablespace from database...
    Found temporary tablespace: TEMP
    Checking SYS Credentials ... OK.
    Checking DB Init Parameters ... OK.
    Checking for Repos User ... Does not Exist.
    Loading necessary DB objects ...
    Checking DB Object (DBMS_SHARED_POOL , PACKAGE) ... Exists.
    DBMS POOL package exists.
    Done Loading necessary DB objects
    Creating repos user ... Failed.
    Repository Creation failed. Failed to create Repos User.
    ''stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action create -repos_user SYSMAN -metalink_username NOTAVAILABLE_ -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log -ecm_datafile E:\oraclegrid\oms10g\oradata\mgmt_ecm_depot1.dbf -datafile E:\oraclegrid\oms10g\oradata\mgmt.dbf have completed with exitCode=12
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'Enter SYS user's password :
    Enter repository user password :
    Enter MetaLink user password :
    Getting temporary tablespace from database...
    Found temporary tablespace: TEMP
    Checking SYS Credentials ... OK.
    Checking DB Init Parameters ... OK.
    Checking for Repos User ... Does not Exist.
    Loading necessary DB objects ...
    Checking DB Object (DBMS_SHARED_POOL , PACKAGE) ... Exists.
    DBMS POOL package exists.
    Done Loading necessary DB objects
    Creating repos user ... Failed.
    Repository Creation failed. Failed to create Repos User.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    ''stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: oracle.sysman.top.oms:RepManager Create Repository Error = 12. Please check the log file at E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log
    WARNING: oracle.sysman.top.oms:EmcpPlug:startProcessing:Exception in runner=RepManager Create Repository Error = 12. Please check the log file at E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Completed EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=configuration in step=2:microstep=0
    INFO: oracle.sysman.top.oms:Internal PlugIn for {Micro Step state:step:2:configuration in CfmAggregateInstance: oracle.sysman.top.oms:10.2.0.2.0:common:family=CFM:oh=E:\oraclegrid\oms10g:label=7} failed with an unhandled exception:
    java.lang.Exception: RepManager Create Repository Error = 12. Please check the log file at E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log
         at oracle.sysman.emcp.util.EmcpPlug.startProcessing(EmcpPlug.java:389)
         at oracle.sysman.emcp.util.EmcpPlug.invoke(EmcpPlug.java:360)
         at oracle.sysman.emCfg.core.PerformMicroStep.runJavaClass(PerformMicroStep.java:509)
         at oracle.sysman.emCfg.core.PerformMicroStep.executeMicroStep(PerformMicroStep.java:121)
         at oracle.sysman.emCfg.core.ActionPerformer.performMicroStep(ActionPerformer.java:917)
         at oracle.sysman.emCfg.core.ActionPerformer$Performer.run(ActionPerformer.java:1038)
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration has failed its perform method
    INFO: OuiConfigVariables:IAction.perform() was called on {Action state:OUICA in CfmAggregateInstance: OuiConfigVariables:1.0.0.0.0:common:family=CFM:oh=E:\oraclegrid\oms10g:label=7}
    INFO: Framework waiting for Action to complete at 12:19:41.469
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=OUICA Status=is running with ActionStep=0 stepIndex=0 microStep=0
    INFO: OuiConfigVariables:About to execute plug-in OUI_CA
    INFO: OuiConfigVariables:The plug-in OUI_CA is running
    INFO: OuiConfigVariables:Launching CmdExec
    INFO: OuiConfigVariables:ExitCode=0
    INFO: OuiConfigVariables:The plug-in OUI_CA executed as attached=true in separate process with exitcode=0
    INFO: OuiConfigVariables:The plug-in OUI_CA has successfully been performed
    INFO: done waiting for Action from 12:19:41.469
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 15 aggregate instances saved
    please anyone help, i have given all details, i want to install this grid as soon as possible

  • Error While installing 10g grid

    Hi All,
    While installing 10g grid for E-Business Suite 11.5.10.2 on linux-32bit machine
    This is the error message i got while installing.
    INFO: Command = /u01/oracle10g_grid/oms10g/perl/bin/perl /u01/oracle10g_grid/oms10g/install/oneoffs/applyOneoffs.pl automatic
    Archive: /u01/oracle10g_grid/oms10g/install/oneoffs/p4067264_101042_GENERIC.zip
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/xml/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/xml/parser/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XMLReader.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/config/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/config/inventory
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/config/actions
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/xml/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/xml/GenericActions.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/xml/ShiphomeDirectoryStructure.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/README.txt
    Now applying patch:/u01/oracle10g_grid/oms10g/install/oneoffs/p4067264_101042_GENERIC.zip
    OutPut of Command is Invoking OPatch 10.2.0.4.6
    Oracle Interim Patch Installer version 10.2.0.4.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/oracle10g_grid/oms10g
    Central Inventory : /etc/oraInventory
    from : /u01/oracle10g_grid/oms10g/oraInst.loc
    OPatch version : 10.2.0.4.6
    OUI version : 10.2.0.5.0
    OUI location : /u01/oracle10g_grid/oms10g/oui
    Log file location : /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch2010-02-16_22-08-59PM.log
    Patch history file: /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '4067264' to OH '/u01/oracle10g_grid/oms10g'
    Running prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 4067264: Required component(s) missing : [ oracle.rsf.xdk_rsf, 10.1.0.4.2, higher version 10.1.0.5.0 found. ]
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74
    Applying of patch /u01/oracle10g_grid/oms10g/install/oneoffs/p4067264_101042_GENERIC.zip failed
    Archive: /u01/oracle10g_grid/oms10g/install/oneoffs/p4141076_101042_GENERIC.zip
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.zip/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc
    /lib/classes12.zip/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.zip/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.zip/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.zip/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc
    /lib/ojdbc14dms.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/oracle/jdbc/pool/OracleImplicitConnectionCac
    he.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/
    oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/config/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/config/inventory
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/config/actions
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/xml/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/xml/GenericActions.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/xml/ShiphomeDirectoryStructure.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/README.txt
    Now applying patch:/u01/oracle10g_grid/oms10g/install/oneoffs/p4141076_101042_GENERIC.zip
    OutPut of Command is Invoking OPatch 10.2.0.4.6
    Oracle Interim Patch Installer version 10.2.0.4.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracl
    e Home : /u01/oracle10g_grid/oms10g
    Central Inventory : /etc/oraInventory
    from : /u01/oracle10g_grid/oms10g/oraInst.loc
    OPatch version : 10.2.0.4.6
    OUI version : 10.2.0.5.0
    OUI location : /u01/oracle10g_grid/oms10g/oui
    Log file location : /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch2010-02-16_22-09-07PM.log
    Patch history file: /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '4141076' to OH '/u01/oracle10g_grid/oms10g'
    Running prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 4141076: Required component(s) missing : [ oracle.rsf.dbjava_rsf, 10.1.0.4.2, higher version 10.1.0.5.0 found. ]
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74
    Applying of patch /u01/oracle10g_grid/oms10g/install/oneoffs/p4141076_101042_GENERIC.zip failed
    Archive: /u01/oracle10g_grid/oms10g/install/oneoffs/p4488715_101042_GENERIC.zip
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle1
    0g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdb
    c/lib/classes12.zip/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/
    creatin
    g: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/
    creating: /u01/o
    racle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/
    inflating: /u01/oracl
    e10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip
    /oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/or
    acle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/fi
    les/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14
    _g.jar/oracle/jdbc/driver/T4CStatement.class 
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/
    creating: /u0
    1/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/o
    racle10g_grid/oms10g/install/oneoffs/4488715/etc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/config/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/config/inventory
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/config/actions
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/xml/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/xml/GenericActions.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/xml/ShiphomeDirectoryStructure.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/README.txt
    Now applying patch:/u01/oracle10g_grid/oms10g/install/oneoffs/p4488715_101042_GENERIC.zip
    OutPut of Command is Invok
    ing OPatch 10.2.0.4.6
    Oracle Interim Patch Installer version 10.2.0.4.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/oracle10g_grid/oms10g
    Central Inventory : /etc/oraInventory
    from : /u01/oracle10g_grid/oms10g/oraInst.loc
    OPatch version : 10.2.0.4.6
    OUI version : 10.2.0.5.0
    OUI location : /u01/oracle10g_grid/oms10g/oui
    Log file location : /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch2010-02-16_22-09-22PM.log
    Patch history file: /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '4488715' to OH '/u01/oracle10g_grid/oms10g'
    Ru
    nning prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 4488715: Required component(s) missing : [ oracle.rsf.dbjava_rsf, 10.1.0.4.2, higher version 10.1.0.5.0 found. ]
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74
    Applying of patch /u01/oracle10g_grid/oms10g/install/oneoffs/p4488715_101042_GENERIC.zip failed
    Archive: /u01/oracle10g_grid/oms10g/install/oneoffs/p4547445_101042_GENERIC.zip
    creating: /u01/oracle10g
    _grid/oms10g/install/oneoffs/4547445/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/orac
    le/xml/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XMLAttr.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XMLPrintDriver.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XMLSAXSerializer.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XSLSAXPrintDriver.class
    creating: /u0
    1/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/config/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/config/inventory
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/config/actions
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/xml/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/xml/GenericActions.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/xml/ShiphomeDirectoryStructure.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/README.txt
    Now applying patch:/u01/oracle10g_grid/oms10g/install/oneoffs/p4547445_101042_GENERIC.zip
    OutPut of Command is Invoking OPatch 10.2.0.4.6
    Oracle Interim Patch Installer version 10.2.0.4.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/oracle10g_grid/oms10g
    Central Inventory : /etc/oraInventory
    from : /u01/oracle10g_grid/oms10g/oraInst.loc
    OPatch version : 10.2.0.4.6
    OUI version : 10.2.0.5.0
    OUI location : /u01/oracle10g_grid/oms10g/oui
    Log file location : /u01/oracle10g_grid/oms10g/cfgtoollogs/opat
    ch/opatch2010-02-16_22-09-32PM.log
    Patch history file: /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '4547445' to OH '/u01/oracle10g_grid/oms10g'
    Running prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 4547445: Required component(s) missing : [ oracle.rsf.xdk_rsf, 10.1.0.4.2, higher version 10.1.0.5.0 found. ]
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74
    Thanks,
    vinay

    Please check whether the Opatch utility version and the patch binaries are compatible . please go thru readme.html available with the patch binaries.

  • Install EM 10g Grid Control on  Solaris 10 x86

    Hi all
    I need to install Enterprise Manager 10g Grid Control Release 2 on Solaris 10 x86 platform.
    I found out the following link where I can download the software:
    http://www.oracle.com/technology/software/products/oem/index.html
    Howerver it seems that there isn't any download for my platform. Does anybody know where can I find the software?
    How can I configure EM Grid Control on that platform if I don't have the software. Does anybody know a manual installation and configuration method?
    King regard and thank you
    Aron

    That means it is not yet available for 10.2, but it is for 10.1

  • Configuration Assistant failed during OEM 10g Grid control installation

    Hi i got an error while installing OEM 10g Grid control 10.2.0.2.1 on Windows 2008 32bit server.
    Installation of OEM 10g was successfull but during configuration im getting an error "ORA-12560: TNS: protocol adaptor error". hence configuration assistant get failed to create emrep database. i stopped the TNSListener service and started db creation using DBCA again i got the same error. please find the below logs from db10g/cfgtoollogs/cfgfw
    INFO: oracle.assistants.dbca:About to execute plug-in Oracle Database Configuration Assistant
    INFO: oracle.assistants.dbca:The plug-in Oracle Database Configuration Assistant is running
    INFO: oracle.assistants.dbca:Launching CmdExec
    INFO: oracle.assistants.dbca:ExitCode=1
    INFO: oracle.assistants.dbca:The plug-in Oracle Database Configuration Assistant executed as attached=true in separate process with exitcode=1
    INFO: oracle.assistants.dbca:The plug-in Oracle Database Configuration Assistant has failed its perform method
    Note: i got one more error during installation which is "Failed to initialize OCR" and "OS error in starting service OracleCSService"
    INFO: Calling Action ntServicesActions10.2.0.3.0 ntStartService
         selectedNodes = null
         serviceName = OracleCSService
    INFO: Exception thrown from action: ntStartService
    Exception Name: StartIndeterminate_OS_ErrorException
    Exception String: OS error in starting service OracleCSService
    Exception Severity: 0
    please provide me the solution.

    [http://download.oracle.com/docs/cd/B16240_01/doc/install.102/e10953/toc.htm]
    [Enterprise Manager Grid Control Installation and Basic Configuration|http://download-uk.oracle.com/docs/html/B12012_03/toc.htm]
    http://blogs.oracle.com/AlejandroVargas/gems/GridControl10gR2Install.pdf
    HTH
    Anantha

Maybe you are looking for

  • How to place one column under another column in obiee report?

    Hi all, I am new to obiee, so need some help from obiee experts. Can anyone tell me how to place one column data under another column in obiee report? i need the report to be as below category total_students Course_enrollment Test_attended pass_test

  • Clip Notes + Streaming QuickTime = broken?

    I guess this is more of an AME or Reader issue, but figure that PPro users are the most common users of Clip Notes... I've tried exporting a Clip Notes PDF with streaming QuickTime video from both PPro CS3 + AME, PPro CS4 + AME, and standalone AME CS

  • Capturing issues abound

    I just got FCE yesterday, and so far it's proving to be quite impressive, but it also seems to have broken something to do with Firewire. Not only can I not capture in FCE, but iMovie will no longer capture video, and simply having a camera plugged i

  • Garageband exports my audio's volume too low

    So occasionally Garageband decides to export my audio with an outcome that is too low to hear. The audio sounds perfect while it's recording in Garageband itself, but once it exports to an mp3 and try to play it in Itunes or Quicktime, it's way too l

  • Unable to view/locate support email reply

    I put in a support request earlier today, and I just received an email to my Gmail account saying that there was a response waiting for. I followed the link and signed in, but there are no new messages in my verizon inbox, not even after repeated log