Patch Order Application Server 10g

When applying CPUJAN2008 (6639296) to app server 10g (10.1.2.0.2), do we only patch the infrastructure? In the documentation, it says the order to apply this patch is first DB, then app server infra, then app server midtier.
Ive already patched the db and app server infra, both patched successfully. But when i try to patch app server midtier it first skips alot of components and throws msg "This Oracle Home does not have components/versions required by the patch." Does this mean I am only suppose to apply the patch to infrastructure?
I also ran this:
set ORACLE_HOME=d:\oracle\infra
opatch lsinventory -detail
(creates .txt file in <OH>\.patch_storage confirming that patch was applied)
set ORACLE_HOME=d:\oracle\midtier
opatch lsinventory -detail
(creates .txt file in <OH>\.patch_storage stating that there are no interim patch)
Thanks for you help!

Either use the Oracle Universal Installer to find out which patches are installed or use the OPatch utility with the lsinventory option.

Similar Messages

  • Oracle Application Server 10g R3 with patch set 10.1.3.5.0

    Hi All,
    Can anyone help me on this, When I install Oracle Application Server 10g Release 3 (10.1.3.1.0) and patch set 10.1.3.5.0 on Linux. I am not able to find forms and reports container.
    This version doesn't support forms and reports or I have go OAS 10g R2 (10.1.2.0.2) with patch set 3 (10.1.2.3.0). What is the difference between these two releases.
    Please help me.
    Regards,

    Hi James,
    1)Yes it supports IE 8 .Please review the below link for certification details on browers :-
        http://www.oracle.com/technetwork/middleware/ias/downloads/as-certification-r2-101202-095871.html#BAJGCBEA
         Note: Oracle Application Server supports only those browsers.
    2)Forms only support Windows 7 32 bit only.
        Please refer to the note:1292919.1 "Certification of Oracle Developer Suite 10g (10.1.2) on Windows 7 (32-bit)"
    3)Could you provide more information of JVM because when you install 10gR2 it has JDK and JRE present in it.
    Regards,
    Prakash.

  • 10.1.0.5 Patch for Oracle Application Server 10g Release 1

    Hi Guys,
    Does anyone know what is the patch number for 10.1.0.5 Patch for Oracle Application Server 10g Release 1?
    This is a Oracle Application Server and not Oracle Database server.
    I tried searching on Metalink but not able to find it.
    Thanks in advance!
    Avinash.

    10.1.0.5 is not a version number for an OAS. It is only a version number for RDBMS.
    If you are running OAS 10.1.2.x with the Identity Managmenet/SSO (OID Server), & elected to have it install the Metadata Repository database for you, this was a RDBMS release below 10.1.0.5. The OAS patch to 10.1.2.2 or 10.1.2.3 required the RDMBS be updated to 10.1.0.5 first. This is the standard 10.1.0.5 update for your platform.
    use Advanced Search on Metalink
    To find the OAS 10.1.2.2 or 10.1.2.3 patch set, search for Oracle Fusion Middleware Server. Release 10.1.2.2 and 10.1.2.3. Look for the decriptions like "PLACEHOLDER BUG FOR AS/DS 10.1.2.3 PATCHSET RELEASE" OR "PLACEHOLDER BUG FOR AS/DS 10G R2 PATCH SET 2 10.1.2.2"
    To find the RDBMS 10.1.0.5 patch, search for RDBMS Server, Release 10.1.0.5. Look for the Description containing something like "10.1.0.5 PATCH SET FOR ORACLE DATABASE SERVER"
    The patch number is different per platform, so I can't tell you the exact #s without more info (OS)

  • Installing Oracle Application Server 10g 10.1.2.0.2  on RHEL 5.3

    Dear All,
    My Linux version is RedHat 5.3
    I want to Install oracle 10g Application Server on it please help me out to do so.
    Please help me,thanks in advance.
    Please provide me with the documentation link to install Oracle Application Server 10g 10.1.2.0.2 on RHEL5.3
    Thanks and Regards
    Monoj Das

    install Oracle Application Server 10g 10.1.2.0.2 on RHEL5.3
    Said that OAS 10.1.2.0.2 is desupported, you have to apply patch 10.1.2.3 to be fully certified on OEL/RHEL 5.
    See MOS doc. ID 564174.1 Oracle Application Server 10g (10.1.2) Installation Requirements for Linux OEL 5 and RHEL 5

  • Oracle Application server 10g

    Hi:
    How to check if our system is Oracle Application Server 10g intergrated? It was asked in a patch readme ATG.RUP.6. this is 11.5.10.2 on unix, 10g rdbms. they have SSO. THANKS
    Edited by: user9231603 on Feb 11, 2011 6:37 AM

    Hi;
    For SSO check note Oracle SSO E-Business Suite Applications Integration with Oracle Business Intelligence [ID 553423.1] part Setting SSO Profiles
    For OID check svcname parameter in CONTEXT_FILE.. Details can be avaliable at:
    Oracle SSO E-Business Suite Applications Integration with Oracle Business Intelligence [ID 553423.1]
    Regard
    Helios

  • How to use JavaMail 1.4 with Oracle Application Server 10g (9.0.4.0.0)

    Hi all,
    I'd like to know if it's possible and how to use JavaMail 1.4 with Oracle Application Server 10g (9.0.4.0.0), Windows version.
    With the following code, I can see that the mail.jar used by the server is the one included in the jdk installation :
    // I'm testing InternetAddress.class because I want to use commons-email-1.2.jar that requires mail.jar 1.4 (or higher) and activation.jar 1.1 (or higher)
    // and I know that inside the commons-email-1.2.jar file, I need to call the InternetAddress.validate() method that throws a java.lang.NoSuchMethodError: javax.mail.internet.InternetAddress.validate()V if it is used with mail.jar 1.2.
    Class cls = javax.mail.internet.InternetAddress.class;
    java.security.ProtectionDomain pDomain = cls.getProtectionDomain();
    java.security.CodeSource cSource = pDomain.getCodeSource();
    java.net.URL location = cSource.getLocation();
    System.out.println(location.toString());
    This code returns : file:/C:/oracle/app/jdk/jre/lib/ext/mail.jar and this mail.jar file has an implementation version number: 1.2
    - I've tried to include my own mail.jar (1.4.2) and activation.jar (1.1.1) files in the war file that I deploy, but it doesn't work (the server still uses the same mail.jar 1.2)
    - I've tried to put the mail.jar (1.4.2) and activation.jar (1.1.1) files in the applib directory of my OC4J instance, but it doesn't work (the server still uses the same mail.jar 1.2)
    - I know that a patch exists : I've read the following document: How to Make Libraries such as mail.jar and activation.jar Swappable ? [ID 552432.1]
    This article talks about the Patch 6514136, but this patch only applies to : Oracle Containers for J2EE - Version: 10.1.3.3.0
    Can you please help me ?
    Thanks in advance for your answers,
    Laurent

    I strongly suggest to upgrade to AS 10.1.3 to get this.
    Think of future support of AS 9.0.4. You will get not critical patch updates anymore.
    --olaf                                                                                                                                                                                                                                                                                                               

  • How can i install application server 10g R2 on windows server 2008

    Dear friends,
    I need to install application server 10g r2 on windows server 2008.
    Is there any patch for this. where can I get those patches?
    plz help.
    Divya Alok

    MKBH wrote:
    Why OracleAS 10.1.3.x version doesn't have OracleAS Infrastructure components?Because not all OAS releases were complete software versions. By complete software versions, I mean they were not a software version where each component (like Identity Management, Portal, BI, SOA Suite, etc.) would have an updated version.
    OAS Release 2 (10.1.2.x.x) was a complete release but OAS Release 3 (10.1.3) was not. After release 2, Oracle Fusion Middleware OFM 11g is now a complete release.
    OracleAS Identity Mgmt (10.1.4) was the updated version of OAS Id Mgmt after OAS 10.1.2 and before OFM 11g.

  • Need to upgrade Application Server 10g 10.1.2.0.2 to 10.1.3

    Dear All,
    I am having bit doubts on choosing the Application server down load file from the Oracle site. Currently we are using Application Server 10g 10.1.2.0.2 Forms and Report service. I need to up grade the Forms and Report service to 10.1.3 version of the Application Server 10g .
    If I select the Application Server 10g Release 3 from the site its directing me to the big selection list. Actually i bit confused which one i need to choose. I need to upgrade only the Forms and Report service Application Server 10g .Iam sure somebody can help me to solve this confusion. I appreciated ans thanks your attention in my query.
    regards
    Mathew

    Hi Mathew,
    If I am not mistaken, there is no Forms and Reports version 10.1.3. There is an Application Server version 10.1.3.x but this is a J2EE only release. Forms and Reports have not been bundled in this version.
    Could it be that you are mistaken with version 10.1.2.3 which is a patch set on top of Application Server 10.1.2.0.2 ? If this is the case, you can apply the patch set as per directions in the readme from the patch set. The patch set is available from [My Oracle Support|http://updates.oracle.com/download/5983622.html].
    Thanks,
    Erik Janssen

  • How to start the oracle application server 10g

    Hi..
    I have Installed Oracle application server 10g but I am not able to start and dploy the forms in the server.

    Please see this link for the proper order to [start and stop application server 10g|http://download.oracle.com/docs/cd/B14099_19/core.1012/b13995/start.htm#i1014590].
    If you encounter any errors, do not forget to give exact description of errors, their exact error message and codes, where do you get them and what have you done recently. Please also do not forget to include your complete product version.
    thanks,
    AMN

  • Installing Application Server 10g (10.1.3) on Windows Server 2008 Document

    Basically, I need to find out if 10.1.3 application server Enterprise Edition can be installed on Windows Server 2008 with a 64-bit operating system. A yes or no is helpful, but I would like to have a link to the documentation. I'm assisting on an install and have been asked to find this info.
    I've done some searching, but haven't yet been able to find anything on 2008. I found this ( [http://download.oracle.com/docs/cd/B25221_04/win.1013/install/reqs.htm#sthref62] ), which is from this ( [http://download.oracle.com/docs/cd/B25221_04/getstart.htm] ), but the documentation found there only mentions as high as Windows Server 2003. Our DBA would like to see it say Windows Server 2008 64-bit, not just Windows Server 2003 and up (before we make an order on hardware).
    Does anyone have a link that specifically says windows server 2008 / 64-bit is possible?
    Thanks in advance!

    Since Windows 2008 was released after the 10.1.3 release, the Installation Guide does not include Windows 2008. In this case, the Certification should be checked before proceeding.
    Oracle Application Server 10g Release 3 (10.1.3) Certification Information
    [http://www.oracle.com/technology/software/products/ias/files/oracle_soa_certification_101310.html]
    From here, you will find that 10.1.3 is certified on Windows 2008 and that you should also see the following document for more details:
    Oracle Application Server 10g Release 3 (10.1.3) Installation Requirements for Microsoft Windows (Doc ID Note 444112.1)
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=444112.1
    (requires login)
    reference:
    How to Find Certification Details for Oracle Application Server 10g and Oracle Fusion Middleware 11g (Doc ID 431578.1)
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=431578.1
    (requires login)
    ...Ken

  • Error message while installing Application Server 10g 10.1

    I downloaded Application server 10g 10.1. Unzip it into a directory. Right at beginiing of installation, it gives the following:
    ERROR "There are no patches that need to be applied from the Patchset Oracle Application Server Patchset 10.1.3.4.0"
    Please, kindly provide me with a clear, step-by-step installation guide. Operating system environment is WindowXP
    thanks.

    Please make sure that you downloaded the right software cd's and not the patchset CD.
    Also, next time, please give your product version numbers and types with detail. 10g and 10.1 is not sufficient to recognize your product in the really broad range of creatures under 10g.
    AMN

  • Application Server 10g r2 (Replication)

    Hello All,
    We are planning to migrate from single instance DB to RAC in a few days, As far as my DB server is concerned once oracle clusterware is installed and configured my DB should failover to next node in case of any failures, but how do i make sure Middle Tier including my Application files is also available in such cases, how do i replicate Application server including Application files ? Please see details as below :
    Current setup :
    Oracle Application Server 10g - 10.1.2.0.2
    OS - Windows 2003 R2 Enterprise Edition (32 - bit)
    Target Setup :
    Oracle Application Server 10g - ?? What version should be needed for my target setup, please provide link if possible and does it support target OS.
    OS - Windows 2008 R2 (64 - bit)
    Please let me know if further information is needed with respect to above request .
    Thanks
    Ali

    Hi,
    So this means to have a spare machine for middletier always. Or for my case i could just install OAS on both nodes (standalones at the moment) and then start with RAC setup, Iam not getting the order at all. We have two new servers with Win 2008 r2 64-bit for the target setup here is our current setup :
    DB server on server 1 with win 2003 r2 32-bit
    APPLICATION SERVER 10G on server 2 with 2003 r2 32-bit
    Target setup has 2 new servers with OS installed and is expected as follows :
    DB server with OAS on node1 with win 2008 r2 64-bit
    DB server with OAS on node2 with win 2008 r2 64-bit
    These nodes will be interconnected to achieve Oracle RAC setup. But how do i do all this. Is following sequence right :
    a) Setup OAS on standalone server 1
    b) Setup OAS on standalone server 2
    c) Or clone a) to b)
    d) Setup oracle cluster
    e) install DB server and restore.
    Thanks

  • Installing Application Server 10g R1

    Hi Experts,
    whil installing application server 10g R1, I am facing below warning
    =============================================
    checking operating system certification+
    OUI-11101: Mandatory attribute 'value' missing from glibc
    =============================================
    I check and glibc is available,
    Please advice.
    Regards

    I'm not familiar with OAS certifications with regard to Business Intelligence Published but let's assume that you need to install 10.1.2.3.
    First of all you need to ensure that your system meets the requirements listed in Table 1 from the certification document in my previous post. Once you have done this, you may want to use My Oracle Support document [url https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=329361.1]329361.1 for further patching info for 10.1.2.3.
    Thanks,
    EJ

  • Oracle application server 10g installer

    I'am trying to install oracle application server 10g. During the installation it appeared some messages like these ones:
    "Error al llamar al destino 'libso_install' del archivo make /u2001/frs/OraHome1/reports/lib/ins_reports.mk".
    "Error al llamar al destino 'agent' del archivo make /u2001/frs/OraHome1/sysman/lib/ins_sysman.mk"
    "Error al llamar al destino 'webm_install' del archivo make '/u2001/frs/OraHome1/forms90/lib/inst_forms.mk'"
    I do not the reason of these error messages?
    Are they related whit the fact tha I do not have de SDK 1.4.1 32BIT SR1 installed?
    And I do not understand because when the installation begin it shows me the next message "All requirements met.":
    Checking requirements...
    Checking operating system version: must be 5200
    Passed
    Checking operating system patches: IY43980:bos.perf.libperfstat:5.2.0.11,IY44810
    :bos.mp:5.2.0.12,IY44810:bos.mp64:5.2.0.12,IY44810:bos.up:5.2.0.12,IY45462:bos.a
    dt.include:5.2.0.12,IY45707:bos.mp:5.2.0.12,IY45707:bos.mp64:5.2.0.12,IY45707:bo
    s.up:5.2.0.12,IY46214:bos.adt.include:5.2.0.13,IY46214:bos.mp:5.2.0.13,IY46214:b
    os.mp64:5.2.0.13,IY46214:bos.net.tcp.client:5.2.0.13,IY46214:bos.up:5.2.0.13,IY4
    6605:bos.mp64:5.2.0.13,IY51801:bos.rte.aio:5.2.0.14 Passed
    Checking operating system packages: bos.adt.base,bos.adt.lib,bos.adt.libm,bos.pe
    rf.libperfstat,bos.perf.perfstat,bos.perf.proctools,X11.motif.lib Passed
    Checking swap space: must be greater than 1536 MB.
    Actual 2048MB Passed
    Checking Temp space: must be greater than 400 MB.
    Actual 689 MB Passed
    All requirements met.
    Moreover it finished the disk1 installation and never it ask me the disk2.
    If I click on the continue button the installation continues but at the end it doesn't work?
    Please, I need help !!!!
    Thanks!!

    Thanks to answer me Andreas.
    You are ok, I can use make from the command line. Looks this:
    (orafrs@anag:/u2001/frs/OraHome1/reports/lib)33%make ins_reports.mk
    aix.oraclemake: Command not found.
    (orafrs@anag:/u2001/frs/OraHome1/reports/lib)34%make -f ins_reports.mk
    aix.oraclemake: Command not found.
    (orafrs@anag:/u2001/frs/OraHome1/sysman/lib)40%make ins_sysman.mk
    aix.oraclemake: Command not found.
    (orafrs@anag:/u2001/frs/OraHome1/sysman/lib)41%make -f ins_sysman.mk
    aix.oraclemake: Command not found.
    I don't know hoy to test the ar command because I need some files to have my library.
    How can I know if my compiler is installed? And if I need to install it, how can I know which compiler I need form my Aix 5.2 version?
    Thanks for you time!!!!
    I wait your answer

  • Difference between Oracle 11i Apps DBA & Oracle Application server 10g DBA

    Hi All....
    can anyone explain me the *"Difference between Oracle 11i Apps DBA & Oracle Application server 10g DBA"*
    Can Oracle 11i Apps DBA work in a Oracle Application server 10g DBA environment.
    Regards,

    Oracle Apps is a suite of financial applications.
    Oracle Application server is Oracle's scaled up implementation of Apache or Weblogic or similar products.
    While Oracle Apps might use Oracle Application Server as middleware, Oracle Apps is much, much more than Oracle Application Server.
    An Oracle Apps DBA is primarily busy on the functional side, and with implementing an ongoing stream of patches ;)
    The two functions have almost nothing in common.
    Sybrand Bakker
    Senior Oracle DBA

Maybe you are looking for

  • Descriptions in field explorer on CR 2008

    Hi, We're opening a query by using SAP toolbar on Crystal Reports 2008 and on the fields explorer we can't see fields description, so we're not able to work with them (they only have a long character string as a name, we don't have neither BW Descrip

  • Problems with Photoshop Updates (12.0.3, 12.0.4)

    When i tried to install the photoshop updates 12.0.3 and 12.0.4, it doesn't worked (win7, 64bit). So i reinstalled photoshop and tried again to install the updates, but it failed again. After ps deinstallation and installation, the update of the clea

  • Agent service on Windows does not start

    Ok: Grid Control 10.2.0.1, repository 10.1.0.4, Linux Red hat 4 Target node is a windows 2003 server (kinda, its on VMWare) with no service pack installed (don't ask). There is no oracle software on the target node except an oracle 10.2.0.3 agent. We

  • Making First DVD with Toast, Any Catches?

    Having finished my first short movie in iMovie as best I could, I'm trying to burn it to DVD using Toast. The only way I see to get the whole movie in as a continuous entity is to take the entire Quicktime movie from the Media Browser to the video Co

  • Occurred while executing line 5 of valid BeanShell script

    Hello Everyone, I am a newbie to Endeca Guided Search. I had created a new Developer project. I updated its input source, Properties and Dimension. after doing this when i go to my application directory C:\apps\TestApp\control> and try to execute ini