Upgrade agents from OEM 10.2.0.5 from 12c not using Upgrade Console

Hi,
As we have to upgrade more than 100 agents from OEM 10.2.0.5 to OEM 12.1.0.3, don't have oracle account passwords (OEM 10g agents are runing as the oracle accout), and PAM authentification is not working for our environnement (SR open) we want to know if there is a workaround for upgrading agents and not using the upgrade console.
Regards,
Nicolas

Hi, the response from the support is upgrading all our agents to 11g and then upgrading to 12c it seems a bit complicated isn't it (more than 100 agents to migrate) ?
And as the migrate from 10g to 12c is nothing more than many automated actions I can believe that it can't be done manualy (just the install and configure agants).
Regards,
Nicolas

Similar Messages

  • I am trying to print a color photo on my MacBook Pro from iPhoto (not using Photoshop) using Epson 2200 printer, and everything I do in the Color Matching and Print Settings results in a photo with a pink cast to it. What am I doing wrong?

    I am trying to print a color photo on my MacBook Pro from iPhoto (not using Photoshop) using Epson 2200 printer, and everything I do in the Color Matching and Print Settings results in a photo with a pink cast to it. What am I doing wrong?

    Have you checked the ink cartridges and made sure the nozzles are clear? Are you able to print from outside of iPhoto with the correct color?
    Try the following: make temporary copy of the library and do the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    OT

  • My iPhone 5 does not allow me to send or recieve any texts from anyone not using iMessage - I've already checked my settings and everything is where it should be. Any other possible ideas?

    My iPhone 5 does not allow me to send or recieve any texts from anyone not using iMessage - I've already checked my settings and everything is where it should be. Any other possible ideas?

    Contact your carrier to make sure there's nothing wrong with your account.
    Also, it may be worth going into Settings>General>Reset and choosing Reset Network Settings. You'll lose saved wifi passwords but you won't see any other changes. That may resolve the issue.
    ~Lyssa

  • Populate ComboBox from database - NOT using Flex Data Services

    Hi there,
    We are using CF with Flex but are not using the Flex Data
    Service. I'm very much a newb and I'm having trouble finding any
    information on how to populate controles from a database without
    using Flex Data Service. Any help would be greatly appreciated.
    First I have a page... JobSearch.mxml that contains a combo
    box that I want to populate with the job_id and job_title from a
    MSSQL database.
    In Flex in the RDS DataView I used the "Create CFC" Wizard
    which generated "job.cfc" and "jobGateway.cfc". It also generated
    "job.as".
    The CF Function that selects the data appears to be defaulted
    and called "load" and the .as function is called simply "job".
    So, that all looks great. But I can't find any information on
    what I need to have on my JobSearch.mxml to actually get this data
    into the comboBox.
    I did:
    <mx:Script>
    <![CDATA[
    [Bindable]
    public var jobData:job = null;
    ]]>
    </mx:Script>
    And then:
    <mx:ComboBox
    text="{jobData.job_title}"></mx:ComboBox>
    But I'm being told "Type was not found or was not a
    complie-time constant: job"
    I guess I'm missing something, or doing something way
    wrong... I just don't know enough of Flex at this point to know
    what it is.
    Thanks!
    April

    Using php or asp is not an option, as we are a Cold Fusion
    House.
    I was looking at an article on Ben Forta's blog (
    http://www.forta.com/blog/index.cfm?mode=e&entry=1786)
    and following his example I did this... only it doesn't work:
    I'm very very new to Flash and we are using ColdFusion but
    are not using Flex Data Services. I've been trying to figure out
    how to populate a combobox from a database and I'm just not having
    any luck.
    My project is called "PreTraffic". I have my main file as
    "JobSearch.mxml" and a folder under the root named "cfc" with a
    file called "job.cfc".
    job.cfc contains the following code:
    <cfcomponent>
    <!--- Get jobs --->
    <cffunction name="GetJob" access="remote"
    returntype="query" output="false">
    <cfset var job="">
    <cfset var results="">
    <cfquery datasource="discsdev" name="job">
    SELECT job_id, job_title
    FROM job
    WHERE status = 'O'
    ORDER BY job_title
    </cfquery>
    <cfquery dbtype="query" name="results">
    SELECT job_title AS label, job_id AS data
    FROM job
    ORDER BY label
    </cfquery>
    <cfreturn results>
    </cffunction>
    </cfcomponent>
    And JobSearch.mxml has the following code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*"
    layout="absolute"
    backgroundGradientColors="[#ffffff, #d0d0d0]"
    creationComplete="InitApp()">
    <mx:Style source="style.css" />
    <mx:Script>
    <![CDATA[
    public function InitApp():void {
    jobSvc.GetJob();
    ]]>
    </mx:Script>
    <!-- ColdFusion CFC (via AMF) -->
    <mx:RemoteObject id="jobSvc" destination="PreTraffic"
    showBusyCursor="true" />
    <mx:VBox label="Job History" width="100%" height="100%"
    x="10" y="92">
    <mx:Label text="Search jobs by"/>
    <mx:Form label="Task" width="100%">
    <mx:FormItem label="Job Name:">
    <mx:ComboBox id="jobNameCB"
    dataProvider="{jobSvc.GetJob.results}"></mx:ComboBox>
    </mx:FormItem>
    </mx:Form>
    <mx:HBox>
    <mx:Button label="Search"/>
    <mx:Button label="Clear"/>
    </mx:HBox>
    </mx:VBox>
    </mx:Application>
    My Compiler thingy points to:
    -services
    "/Volumes/flexwwwroot/WEB-INF/flex/job-services-config.xml" -locale
    en_US
    and job-services-config.xml contains the following code:
    <destination id="PreTraffic">
    <channels>
    <channel ref="my-cfamf"/>
    </channels>
    <properties>
    <source>flex.pretraffic.cfc.job</source>
    <lowercase-keys>true</lowercase-keys>
    </properties>
    </destination>
    Well, when I run the app... the combobox is not populated...
    Can anyone help with what I've done wrong?
    Thanks!
    April

  • Export JPEGs from blobs (not using interMedia)

    I am storing JPEGs in blobs using the following stored procedure:
    CREATE OR REPLACE PROCEDURE load_file (fname in varchar2, sp_id in varchar2, objectid in varchar2) IS
    src_file BFILE;
    dst_file BLOB;
    lgh_file BINARY_INTEGER;
    BEGIN
    src_file := bfilename('CTEMP', fname);
    -- blob reserve
    delete from image_table where spill_id = sp_id;
    INSERT INTO image_table (spill_id, rp_objectid, image) VALUES (sp_id,objectid,EMPTY_BLOB()) RETURNING image INTO dst_file;
    -- lock blob for input
    SELECT image INTO dst_file FROM image_table WHERE spill_id = sp_id FOR UPDATE;
    -- file open
    dbms_lob.fileopen(src_file, dbms_lob.file_readonly);
    -- length of file
    lgh_file := dbms_lob.getlength(src_file);
    -- input file
    dbms_lob.loadfromfile(dst_file, src_file, lgh_file);
    -- update table
    UPDATE image_table SET spill_id = sp_id, image = dst_file WHERE spill_id = sp_id;
    delete from image_table where image is null;
    -- Alle Files close
    dbms_lob.filecloseall;
    -- dbms_lob.fileclose(src_file);
    COMMIT;
    END load_file;
    I need to export the JPEGs back out to .JPG files. How can I do that?
    I am running Oracle 8.1.7 on Windows 2000.
    Thanks
    Dave

    Here's how I'm doing it. We're using the web, so I'm just referencing this procedure as part of an <IMG SRC="||get_empimg?empno_in='nnnnnnn'> tag in HTML.
    I'm storing our mime-type in the file, but you'd need to specify an "image/pjpeg" mimetype if you're not storing it on an image by image basis somewhere.
    create or replace procedure get_empimg(empno_in number) as
    vblob blob;
    buffer raw(32000);
    buffer_size integer := 32000;
    offset integer := 1;
    length number;
    mimetype varchar2(40);
    begin
    select emp_pic, emp_pic_mime into vblob, mimetype
    from web_emp_tbl
    where emp_no = empno_in;
    owa_util.mime_header(mimetype);
    length := dbms_lob.getlength(vblob);
    while offset < length loop
    dbms_lob.read(vblob,buffer_size,offset,buffer);
    htp.prn(utl_raw.cast_to_varchar2(buffer));
    offset := offset + buffer_size;
    end loop;
    end;

  • Remove .par from syste not using the portal(it´s down),should do offline

    Hi
    we have a portal that have an iView called in the framework.
    This iView is causing an error, so when accesing the portal we inmediatelly have the issue and we have no access to the web and the content admin.
    This error is caused due to a problem in the last version updated.
    I have 2 options in mind to change this:
    -Upload a new version of the file withot the proble. This could be done with NWDS but it´s not working.
    -Remove the iView with the problem but this should be done offline. And i don´t know how.
    Any idea?
    I´m lost and in a rush.
    Regards
    Fernando

    Hi,
    Offline undeployment:
    Here is the way you can undeploy your par file manually:
    Remove your par.bak files from:
    ..\usr\sap\<SID>\<JC-->\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd
    and
    ..\usr\sap\<SID>\<JC-->\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\temp
    Mostly the par.bak will be present either in pcd or temp folders but not in both.
    ex: C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd
    After that restart your J2EE engine and check your par file again.
    To remove the IView you should goto Content Administration and Portal Content and remove the IView from there.
    Greetings,
    Praveen Gudapati
    [Points are welcome for helpful answers]

  • DELETE DATAFILE (database) FROM ASM not using dbca

    Hi All
    I have RAC(2 node) on Windows 2003 EE, Oracle 10g R2
    How i can delete file from my asm instance?
    For example, i create database manualy then i want delete this database? how i can delete file from asm? dbca dont see this instance.
    a long time ago, i have also TEST db, i delete this db using dbca but in ASM (EM console) i still see this db, there are no file but i see "word" TEST how i can delete that?
    thanks in advice

    http://www.oracle.com/technology/products/database/asm/pdf/asm_10gr2_bestpractices%2009-07.pdf
    page 26
    SELECT concat('+'||gname, sys_connect_by_path(aname, '/')) full_alias_path FROM
    (SELECT g.name gname, a.parent_index pindex, a.name aname,
    a.reference_index rindex FROM v$asm_alias a, v$asm_diskgroup g
    WHERE a.group_number = g.group_number)
    START WITH (mod(pindex, power(2, 24))) = 0
    CONNECT BY PRIOR rindex = pindex;
    :)

  • How to add hard drive manually (from CLI, not using VM Manager)

    How do you add hard drive manually from command-line, not from VM Manager?
    TIA.

    Please elaborate. A physical hard drive? Virtual? To the host? To a VM?

  • The Air Drop Icon is not available.  Cannot send or receive messages from anyone not using Messenger.

    I have checked to see that my iPad is using the latest software available and it is.  I have followed on-line directions to access Air Drop, but I do not have the Icon for it anywhere.
    I am not able to send or receive messages to anyone not using Messenger.  Thee Apple page says I should be able to.
    Any help appreciated.

    Yes, it is 2 questions. 
    My iPad is Model MC763LL/A - I hope that is the answer!  I do have Blue Tooth on.  I am not connected to WiFi, but am on Cellular Data here.  That should not have a bearing on the icon being loaded, should it?

  • SSIS - Change Config File Path LOCATION in SQL Agent Job Step (NOT USING DTEXEC)

    SSISers;
    I am not new to ssis but am trying to deal with promoting of ssis config files differently for a specific project. We are using SQL 2008 R2.
    As a standared pattern used for years, we just use SQL Agent, build a job step for the ssis package, add the ssis package as SQL Integration Services Package type from fileshare (not using Integration Services), and add the necessary production
    config files in the configutation tab of the job step. Easy.  We do not execute our packages with DTEXEC command line.
    A new project has the developers leaving the config files in the package - not removing the config files for deployment. Is there a way to override JUST THE CONFIG FILE PATH LOCATION in the job step for ssis package? Remember, we are NOT using dtexec. 
    I was told that /SET might do it but I do not see a good example anywhere of hooking this in and how it works for a CONFIG FILE PATH LOCATION - I see variable overrides but not CONFIG FILE PATH LOCATION. The packages were written with Absolute config file
    path and not Relative path.
    Please understand that my goal is to let them leave the packages as is, we move the config files to the production sever and all we have to do is flip the location of where the config files are sitting for the ssis pacakge to look for them.  We would
    rather NOT have to use DTEXEC command  line with the job step for reasons that I do no need to get into on this forum.
    Any suggestions are appreciated.

    Hi mg30,
    There is no way to overwrite the XML configurations file just through modifying the SQL Server Agent job steps.  The Dtexec utility will apply the default package configurations for the second time after applying the options specified in the command
    lines or other package configurations configured in the job step.
    If the package is not deployed/installed, the Dtexec utility looks for the XML configurations file according to the file path defined in the Package Configurations Organizer window. In this situation, you need to either disable the package configurations
    or modify the XML file path in the BIDS.
    If the package is already deployed/installed, you need to modify the package as above or re-specify the install folder for the package configurations file. 
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Java program to send email from lotus notes

    Hello,
    Please anyone suggest me how to send email from lotus notes using java.
    Thanks.

    I don't understand the question. Are you asking:
    1. How do I send e-mail from Lotus notes manually? Press the Send button.
    2. How do I send e-mail from Java? Look into the Java Mail API. Doesn't require Lotus Notes (or any other e-mail client, for that matter).
    3. How do I send e-mail to a Lotus Notes address? Just send e-mail to the address (see # 2 above). Nothing special required just because the recipient uses Lotus Notes. FYI: I use Lotus Notes (though I hate it) because it's our company's standard & have written Java apps that send e-mails to Notes. The only time I've had to be aware the recipient was a Notes client was when I was sending HTML formatted messages; then I had to pay attention to the limitations of Notes' brain dead HTML parser.

  • Upgrade the OEM Agent from 10.1.0.3 to OEM 10.2.0.1

    Hi,
    I have to upgrade the OEM Agent from 10.1.0.3 to OEM 10.2.0.1. Can anyone please tell me how to do it.
    Regards,
    Ankit agrawal.

    Try this link
    Oracle Enterprise Manager 10g (Version 10.1) Migration Process
    http://download-west.oracle.com/docs/cd/B19306_01/em.102/b16242/migration.htm#CJHHGJBE

  • How to Upgrade Target Agent from 10.2.0.3 to 10.2.0.4

    Hi Everybody,
    I am doing this first time so need some help
    Q1. I need to Upgrade Target Agent from 10.2.0.3 to 10.2.0.4 manually and can't seem to find the right patch I need.
    I tried p3731593, but this seems to be installing much more than what I need so I cancelled it
    One option I thought of was to uninstall 10203 agent and install 10204 in the same agent home But I was wondering if there is a way I can upgrade my agent.
    Q2. Does the agent version on target and host(OMS) need to be same or can I have Target Agent 10.2.0.4 and host agent 10.2.0.3?
    Thanks for helping in advance
    Jeet

    Hi Jeet,
    You can use Patch 3822442 to upgrade the agent.
    The agent can be of different version.
    Regards
    Lai

  • SCOM : Issues while upgrading SCOM agent from 2012SP1 to R2

    Hi,
    We have upgraded SCOM setup from SP1 to R2 but facing issues with agent upgrade.
    We were able to view only ~70% agents in pending management (Agent requires update).
    Further, when I tried to upgrade agents through console, some are successfully upgraded but rest are giving
    error.
    Can someone help me to understand why all agents are not appearing in pending management for upgrade?
    I also tried to upgrade agent manually but no luck. It gives error "The path 'C:\Windows\.........\monagent.msi'
    can not be found. Verify that you have access to location and try again or try to find installation package.........". , though I had logged into server with admin access.
    Also most of servers are remotely manageable but unable to upgrade through console.
    Thanks,
    Priya

    Hi Priya,
    I understand you require the Agent data. How ever the events clearely say the issue is because of the old installation files.
    I was looking a a article on updating an agent to SCOM 2012 R2 from the below link.
    https://technet.microsoft.com/en-us/library/dn249715.aspx
    So the link says:
    When you upgrade an agent, the Operations Manager installer service runs and is not removed until after the completion of the upgrade.
    If the agent upgrade fails, you might have to re-install the agent because the installer service was not properly removed. If you attempt to upgrade the agent again and it fails, you should re-install the agent after you have completed upgrading all features
    of Operations Manager.
    So i would suggest you is you try the below on only 1 agent.
    1. Download the Agent Dump from the below link and try updating it. (This is my copy of MOM Agent.msi from my installation media of SCOM
    2012 R2)
    https://www.dropbox.com/s/wv7y37moyd04209/MOMAgent.msi?dl=0
    If the above does not success  and gives you the same error then try the below
    1. Select an agent and pull all the perfmon data / Alerting data required for it using SQL Query or Reporting.
    2. Uninstall the Old SP1 Agent setup.
    3. Install the Agent via Discovery Wizard or do a manual installation and see if the issue resolves.
    I think either from both the steps will solve the issue.
    Gautam.75801

  • Move agents from one OEM to another..

    Hi!
    I have installed a OEM12c test server and added targets manually to that test server. We want to keep that test server for future testing for pilot users. So we have installed a new OEM12c server that we want to use in out production environment. Is there a way to transfer the targets from the test server to the new prod server? Or do I have to add all the targets manually one more time?
    I understand that this means that the agents have to change hosts.. but I dont know if it works.
    -Jon

    At the moment you can't, as was possible in EM 10/11g, point the agent to the new OMS. See EM 12c : How to Point Existing 12c Agent to New OMS ? => Change Location of OMS and Repository of 12c Agent [ID 1490457.1]
    Eric

Maybe you are looking for

  • No picture ipod to tv

    tv only has scart and aerial so tried to put it throught the dvd player which has rca cable. plugged cables as read on here, tv out on, PAL on, audio perfect but no picture. HELP

  • Mini with PC keyboard: how well is work?

    Hi, If using a mini with a PC keyboard, is there any problems with the special keys? I mean, how do you know where is teh command key? and how will you find special keys like french accent or brackets and so on? Also, is it easy to use a PS/2 keyboar

  • Preferences changing on their own

    Preferences for applications and the sleep mode seem to be changing on their own. What am I looking for and how do I repair it? It was first noticeable in QuickBooks Pro. The company file would stop reacting to entries and then when the application w

  • Java jvm server mode memory leak out of memory crash

    Hi, I am using java version "1.6.0_13" on a windows 2003 server. I am running apache-tomcat-6.0.18 PermSize:256M HEAP:1G If tomcat is started with java with client mode vm, the site works very well! Requests are processed without problems and memory

  • How to view data in tables by selecting the synonym from the database objec

    I could not figure out how to view data in tables by selecting the synonym from the database objects navigation tree. I had to first choose the synonym, view the details of the synonym to determine the table name, and then select the table from the d