Where is Oracle 64 bit 11gR1 11.1.0.7 clusterware on windows 2008r2?

I am confused on something. I am trying to test Oracle 64 bit 11gR1 11.1.0.7 clusterware on windows 2008r2.
I am following Reall application cluster guide for 11g Release 1.
I downloaded Oracle 64bit 11gR1 11.1.0.7.
I couldn't get the window that has options to select
Oracle database 11g
Oracle client
Oracle Clusterware
It seems it only want to install Oracle database server, any clue?
Is it seperated download now?
Regards
Howard
Edited by: user12004308 on 16-Jun-2011 12:08 PM

Hi,
Windows 2008 R2 is not yet certified for running clusterware 11.1.0.7. You would need windows 2008 to be certified
you can get the installer from here
Cheers
FZheng

Similar Messages

  • Where to run SQL statements in Oracle Database 11gR1 ?

    Folks,
    Hello. I have just installed Oracle Database 11gR1 and login to Database Control page. There are 4 tabs on the top: Database, Setup, Preference, Help and Logout.
    I just create a table "table1" in "Database" tap. But I don't see anywhere to run SQL statement such as Select, Insert, Update.
    Can any folk tell me where to run SQL statements in Oracle Database 11gR1 ?
    Or
    Can any folk provide a User Manual for Oracle DB 11gR1 ?

    You can run from a terminal or install an SQL client and connect from there.
    http://www.articlesbase.com/databases-articles/how-to-install-oracle-11g-client-1793770.html
    Best Regards
    mseberg
    Assuming you have an oracle OS user on Linux you can try typing sqlplus at you OS command prompt. Generally you will have a .bash_profile with setting like this:
    # User specific environment and startup programs
    PATH=$PATH:$HOME/bin
    export PATH
    # Oracle Settings
    TMP=/tmp; export TMP
    TMPDIR=$TMP; export TMPDIR
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=/u01/app/oracle/product/11.2.0
    #export DISPLAY=localhost:0.0
    export TZ=CST6CDT 
    export ORACLE_SID=ORCL
    export ORACLE_TERM=xterm
    #export TNS_ADMIN= Set if sqlnet.ora, tnsnames.ora, etc. are not in $ORACLE_HOME/network/admin
    export NLS_LANG=AMERICAN;
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
    LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
    export LD_LIBRARY_PATH
    # Set shell search paths
    PATH=/usr/sbin:$PATH; export PATH
    export PATH=$PATH:$ORACLE_HOME/bin
    # CLASSPATH:
    CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
    CLASSPATH=$CLASSPATH:$ORACLE_HOME/network/jlib
    export EDITOR=vi
    set -o vi
    PS1='$PWD:$ORACLE_SID >'Edited by: mseberg on Jul 11, 2011 3:18 PM

  • ORACLE에서 BIT OPERATION을 사용하는 방법

    제품 : SQL*PLUS
    작성날짜 : 1998-07-29
    Oracle에서 bit operation을 사용하는 방법
    1. bitand()를 사용하는 방법.
    오라클에는 내부함수로 bitand를 지원한다. $ORACLE_HOME/rdbms/admin
    에 가보면 bitand()를 사용한 예를 볼 수 있다. 아직까지는 bitand()
    에 대한 어떤 document도 본 적은 없다. 그러나 실제적으로 사용은
    가능하다. bitand()를 사용하려면 column type은 number type 이어야
    하고 bitand()만 지원할 뿐 나머지 함수는 없다. 그러므로 이것은
    단순히 search하는데만 사용할 수 있다.
    2. utl_raw package를 사용하는 방법.
    utl_raw package는 $ORACLE_HOME/rdbms/admin 아래에 utlraw.sql과
    prvtrawb.plb를 sys user로 실행시키면 install 된다.
    utl_raw package에는 bit_and, bit_or, bit_xor, bit_complement
    function이 제공되기 때문에 어떠한 bit 연산도 가능하다.
    utl_raw package는 package 이름에서도 알 수 있듯이 column type이
    raw type이어야 하는 조건이 있다. 이 package에는 이외에도 여러가지
    함수가 제공되므로 유용하게 사용할 수 있다.
    3. select 조건에서 utl_raw package를 사용하는 경우
    select 조건에서 utl_raw package의 bit_and 조건을 사용하여 query를
    하는 경우는 속도에 영향을 준다. utl_raw package의 bit_or, bit_xor,
    bit_complement는 query 조건으로 사용하기에는 부적당 하다. 그러므로
    대부분의 경우에는 utl_raw package를 사용하고 select의 조건에서는
    bitand() 함수를 사용하면 된다.
    예를 들면
    create table t1
    id     number(10),
    name     varchar2(20),
    level     raw(4)
    SELECT /*+ INDEX_DESC( t1 pk_t1 ) */
    id, name, utl_raw.bit_and( level, '00000001' )
    FROM t1
    WHERE id <= 10000
    AND utl_raw.bit_and( level, '00000001' ) = '00000001'
    AND rownum <= 30 ;
    위의 query는 bit_and function이 data에 따라 몇번 수행될지 알 수
    없다. 만약 id가 순차적으로 부여되어 있고 조건에 해당되는 건수가
    10건 이라면 bit_and function은 10010번 수행되어야 한다.
    가장 좋은 방법이라고 생각 되는 것은 우선 id와 level을 하나의
    index로 만들고 이름을 idx1_t1이라고 하면
    SELECT /*+ INDEX_DESC( t1 idx1_t1 ) */
    id, name, utl_raw.bit_and( level, '00000001' )
    FROM t1
    WHERE id <= 10000
    AND bitand(
         DECODE( SIGN( ASCII( SUBSTRB( RAWTOHEX( level ), 8, 1 ) ) - 64 ),
    -1, ASCII( SUBSTRB( RAWTOHEX( level ), 8, 1 ) ) - 48,
              ASCII( SUBSTRB( RAWTOHEX( level ), 8, 1 ) ) - 55 ),
    1 ) = 1
    AND rownum <= 30 ;
    위의 query는 index만을 사용해서 조건비교를 하게 되고 내부 function
    만을 사용하므로 query의 속도가 비교할 수 없이 빨라지게 된다. 결국
    utl_raw.bit_and function은 최대 30번만 사용하게 된다.

  • Oracle BIEE (11.1.1.5.0) Installation on Windows 7 (64 bit) hung at 98%

    Dear Friends,
    I am unable to perform Oracle BIEE (11.1.1.5.0) Installation on Windows 7 (64 bit)
    It is gettting hung at 98%.
    what is the Fix.
    The error log is :
    java.lang.IllegalStateException: Invalid weblogic home specified: c:\OracleBIEE11g\wlserver_10.3
         at oracle.as.install.bi.installaction.NodeManagerService._validate(NodeManagerService.java:63)
         at oracle.as.install.bi.installaction.NodeManagerService.install(NodeManagerService.java:31)
         at oracle.as.install.bi.installaction.BIInstallAction._installNodeManagerService(BIInstallAction.java:833)
         at oracle.as.install.bi.installaction.BIInstallAction.executeAfterCopy(BIInstallAction.java:307)
         at oracle.as.install.engine.modules.util.installaction.InstallActionProviderUtility.invokeExecuteAfterCopy(InstallActionProviderUtility.java:91)
         at oracle.as.install.engine.modules.presentation.ui.common.wizard.ModifiedDWizard.executeEvent(ModifiedDWizard.java:2948)
         at oracle.as.install.engine.modules.presentation.PresentationModule.processModuleEvent(PresentationModule.java:655)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.processEvent(PartnerModuleImpl.java:118)
         at oracle.as.install.engine.InstallEngine.notifyListeners(InstallEngine.java:626)
         at oracle.as.install.engine.InstallEngine.processEvent(InstallEngine.java:584)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyAllEventListenersHelper(PartnerModuleImpl.java:227)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyListeners(PartnerModuleImpl.java:158)
         at oracle.as.install.engine.modules.install.InstallModule.onSuccess(InstallModule.java:478)
         at oracle.as.install.engine.modules.install.action.InstallManager.notifySuccess(InstallManager.java:321)
         at oracle.as.install.engine.modules.install.command.InstallSuccessCommand.execute(InstallSuccessCommand.java:42)
         at oracle.as.install.engine.modules.install.action.InstallManager.onInstallEvent(InstallManager.java:333)
         at oracle.as.install.engine.modules.install.action.AbstractOUIHandler.fireInstallEvent(AbstractOUIHandler.java:147)
         at oracle.as.install.engine.modules.install.action.OUIInstaller.succeed(OUIInstaller.java:542)
         at oracle.as.install.engine.modules.install.action.OUIInstaller.start(OUIInstaller.java:480)
         at oracle.as.install.engine.modules.install.action.InstallManager.launchOUI(InstallManager.java:211)
         at oracle.as.install.engine.modules.install.InstallModule.launchOUI(InstallModule.java:155)
         at oracle.as.install.engine.modules.install.InstallModule$1.run(InstallModule.java:246)
    Regards,
    DB

    Hi,
    Kindly refer my blog link:
    http://obieeelegant.blogspot.com/2011/10/windows-7-home-premium-edition-is-not.html
    from exp..with obiee11g installation with win 7 64bit i have face so many issues..
    http://obieeelegant.blogspot.com/2011/09/obiee-11g-111150-software-only.html
    obiee11.1.1.5.0(Software Only Install) windows 7  64bit Installation Error
    OBIEE11g software only install configuration get hangover on win 2008 64
    ==========
    Note: some time it works with simple install option then rebooting mechine/restarting mechine it's not working.then i had OWC and discussed with MY Oracle Support team...they confirmed it's not support. please refer the certification matrix excel file in my blog link
    Hope it's clear...
    Thanks
    Deva
    Edited by: Devarasu on Nov 25, 2011 11:18 AM

  • Installing Oracle SOA suite 10.1.3.1.0 on windows server 2008-64 bit.

    Hi,
    Installing Oracle SOA suite 10.1.3.1.0 on windows server 2008-64 bit.
    Getting the following exception when installing BPEL
    oracle.as.install.util.ActionFailedException : java.io.FileNotFound Exception :
    D:\software\bpel\bpel_oc4j\install\log.properties(The system couldnot find the specified).
    at oracle.as.install.action.LogConfigAction.execution(Unknown Source)
    at oracle.as.install.util.ActionQueue.run(Unknown Source)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(Unknown Source)
    Caused by : java.io.FileNotFoundException : D:\software\bpel\bpel_oc4j\install\log.properties
    (The system cannot find the specified file)
    at java.io.FileInputStrem.open(Native Method)
    at java.io.FileInputStrem.<init>(Unknown Source)
    at oracle.as.install.action.LogConfigAction.execute(Unknown Source)
    at oracle.as.install.util.ActionQueue.run(Unknown Source)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(Unknown Source)
    In the unzipped BPEL software folder for installation there is no such file.
    Have installed several Oracle SOA suite 10.3.1.0 on windows server 2003 - 32 bit using the same software.
    But now am using it along with a patch- p6712338 for windows server 2008-64 bit.

    If this is a production instance, you should NOT read past this sentence -- contact Oracle support to do it right.
    If this is just for testing/experiments, have you tried putting an empty file at D:\software\bpel\bpel_oc4j\install\log.properties? How about putting a copy of the file from one of your "windows server 2003 - 32 bit" installations?
    Good luck, Andy

  • Oracle Database 11gR1 Enterprise Manager Console Cannot Display in Browser

    Folks,
    Hello. I am running Oracle Database 11gR1 with Operaing System Oracle Linux 5. I have some issues regarding EM connects with the Database Server as below:
    First, the default listener is LISTENER with standard port number 1521 and protocol TCP/IP.
    Its corresponding service naming S1 is with port 1521 and protocol TCP/IP and hostname localhost.localdomain.
    I run this listener in the following way:
    Step 1: [user@localhost bin]./lsnrctl start LISTENER (This command runs sucessfully.)
    Step 2: [user@localhost bin] ./sqlplus SYS/SYS as sysdba (This command starts sqlplus sucessfully.)
    Step 3: [user@localhost sqldeveloper] ./sqldeveloper.sh (This command invokes SQL Developer sucessfully.)
    But when start Enterprise Manager Console, it cannot connect with the Database. I do it in this way:
    [user@localhost bin] ./emctl start dbconsole
    The above command's output is:
    https://localhost.localdomain:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ... ...
    When open the link https://localhost.localdomain:1158/em/console/aboutApplication in browser, this message comes up:
    The connection to localhost.localdomain: 1158 cannot be established.
    Thus, I add Port Number 1158 into both LISTENER and Service Naming S1. I run ./emctl start dbconsole again and get this message:
    The connection to localhost.localdomain:1158 was interrupted while the page was loading.
    In order to solve the above issue, I create another listener LISTENER2 and another Service Naming S2 with Port Number 1158 and protocol TCP/IP because
    in my point of view, each listener only can have one Port Number(1521 or 1158) and its corresponding Service Naming (S1 or S2) need to have the same Port Number and Protocol (TCP/IP).
    But when I run [user@localhost bin]./lsnrctl start LISTENER2, this message comes up: the listener supports no service.
    From the message, it seems that LISTENER2 cannot work with its corresponding Service Naming S2 with Port 1158.
    EM with Port 1158 cannot display in Browser.
    My questions are :
    First, Is there any relationship needed to be established between listener(LISTENER2) and Service Naming(S2) in order to display EM in Browser ?
    Second, how do folks display EM in browser ?
    Thanks.

    Folks,
    Hello. Thanks a lot for replying. I do the following command: [user@localhost bin]$ wget http://localhost.localdomain:1158/em
    The command returns the message:
    --11:36:33-- http://localhost.localdomain:1158/em
    Resolving localhost.localdomain... 127.0.0.1
    Connecting to localhost.localdomain|127.0.0.1|:1158... connected.
    HTTP request sent, awaiting response... 200 No headers, assuming HTTP/0.9
    Length: unspecified
    Saving to: `em'
    [ <=>                                                                                                              ] 7 --.-K/s in 0.002s
    11:36:33 (4.15 KB/s) - Read error at byte 7 (Connection reset by peer).Retrying.
    --11:36:34-- (try: 2) http://localhost.localdomain:1158/em
    Connecting to localhost.localdomain|127.0.0.1|:1158... connected.
    HTTP request sent, awaiting response... 200 No headers, assuming HTTP/0.9
    Length: unspecified
    Saving to: `em.1'
    100%[=================================================================================================================>] 7 --.-K/s in 0s
    11:36:34 (16.8 KB/s) - Read error at byte 7 (Connection reset by peer).Retrying.
    The above message repeats again and again until finally returns the following message:
    11:39:02 (40.2 KB/s) - Read error at byte 7 (Connection reset by peer).Giving up.
    In browser, http://localhost.localdomain:1158/em cannot display and pop up a Windows with the message: You have chosen to open whicn is BIN file from http://localhost.localdomain:1158 What sholud FireFox do with this file ? Save to Disk ?
    My question is:
    I don't know how to display http://localhost.localdomain:1158/em in Browser. How to solve the issue ?
    Thanks.

  • Oracle BPM 11gR1 Patchset 2 AWS

    I was working with the Oracle BPM 11gR1 Patchset 2 that was created by Oracle on the Amazon Wed Service (AWS) cloud. I have it installed and everything is working. Howerver, because it is a image that was created by Oracle, what are the passwords for the console, em, bam, bpm that was created?
    Information:
    US East AMI ID: ami-c241aaab
    AMI Manifest: 083342568607/oracle-soa-bpm-11gr1-ps2-4.2-pub
    License: Public
    The new Oracle BPM 11gR1, including the latest Oracle SOA Suite 11gR1 Patchset-2 is now available as an Amazon Machine Image (AMI). This is a fully configured image which requires absolutely no installation and lets you get hands on experience with the software within minutes. This image has all the required software installed and configured and includes the following:
    Oracle 11g Database Standard Edition
    Oracle SOA Suite 11gR1 Patch-set 2
    Oracle BPM 11gR1
    Oracle Webcenter with BPM Process Spaces
    Oracle Universal Content Management
    Oracle JDeveloper with SOA and BPM plugins
    What was the usernames/passwords for all the parts?
    The README file states to ask any questions about the image in the SOA forum
    Refernce Link: http://www.oracle.com/technetwork/topics/cloud/whatsnew/index.html (Bottom of page)

    I found the following web site that can help. The password for everything is welcome1
    http://blogs.oracle.com/bpm/2010/06/bpm_11gr1_now_available_on_ama.html

  • How to configure eclipse for Oracle SOA 11gR1 development

    Hi,
    I have installed oracle 11gR1 ( 11.1.1.3.0) and have found that Eclipse (Galileo) as development tool. When I opened Eclipse to create new SOA Project for BPEL development, I could not able to find a SOA Project category. I assume that we need to install plug-in for developing the SOA Project.
    I browse through the site and could not able to locate anything quite useful. Could you please guide me on how to proceed..
    Is Eclipse the strategic development environment for Oracle SOA 11gR1, R2 development.. ?

    http://download.oracle.com/docs/cd/E10291_01/doc.1013/e10538/toc.htm

  • Where is 64-bit version of reset ulitity?

    Bought a used - but in working condition iPod Shuffle 2nd Gen. 
    Tried to charge/sync it and got a dialog box - not recognized by iTunes.
    Not showing up under Devices in iTunes.
    Directed me to iPod reset ut ility setup, which will not dowload - its for 32-bit v windows. 
    Where is 64-bit version of reset ulitity?
    Thanks to anyone out there than can help me.
    ps;  I have done this before with my current iPod suffle 2nd generation, so I know how to sync/reset/charge etc.
    Not a newbie.

    There is no 64-bit Windows version of the utility.  This utility is only for the 1st and 2nd gen iPod shuffle (for use when a Restore using iTunes is not possible), and no other iPod models, so a 64-bit Windows version was not needed when these older shuffles were being sold.
    It sounds like the computer sees the shuffle as connected, because you get that error message.  Also, I assume your other 2nd gen shuffle works properly using the SAME docking cable and USB port on the computer, with the same Windows and iTunes installation.
    This Apple document provides advice, when the computer sees the iPod but not iTunes.
    http://support.apple.com/kb/TS1363
    If you can get the iPod to appear as a storage device in Windows, another thing you can try is to reformat it using Windows.  shuffle's use FAT32 as the format type, so you can select that option.  Also, choose to do a full format, not a "quick" format.  This will erase the iPod. 
    Then, run iTunes.  Hopefully, iTunes recognizes the shuffle and prompts you to do a Restore, which will re-erase it, install its software, and set it to default settings.

  • Where can I download HP ToolboxFX for my Laserjet 1536dnfMFP for Windows 7 64-bit?

    Where can I download HP ToolboxFX for my Laserjet 1536dnfMFP for Windows 7 64-bit?

    The provided document reffer to an earlier HP ToolboxFX software.
    As long as a Full Feature Software available, the HP Toolbox is included, as you may find by the following installation printscreen, taken from a Windows7 64bit Full Feature installation:
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Where is Oracle streams in OEM database control?

    Hi, friends:
    trying to setup streams between two instances, suppose in OEM db control I can find a GUI tool, but can not find out it where, so where is Oracle streams in OEM database control?
    thanks a lot in advance.

    When you say OEM database control it is not clear if you refer to the java gui OEM or the Web EM DB control console, as a de facto standard when you say OEM you refer to the 9i Java based GUI admin tool, on the other hand, when EM Control is mentioned it refers to the 10g web based admin tool.
    If you mean the Java Console, you should consider reading this reference --> Using Oracle Streams to Integrate Your Data
    ~ Madrid

  • When u install oracle where the oracle installation inventory information s

    when u install oracle where the oracle installation inventory information store in unix and windows . can we change location of this

    Again 'u' doesn't appear in any English dictionary.
    Assuming you are not a royal, can you please stop using the so-called 'majestic plural'.
    Why do you need to change the location?
    If you want to change to location: people here aren't get paid to abstract the installation manual on your behalf.
    If you can't be bothered to read it, please don't use Oracle.
    Sybrand Bakker
    Senior Oracle DBA

  • An introduction into Oracle XMLDB 11gR1 (pdf - 4 Mb)

    For a Dutch DBA Conference next week on which I will present some XMLDB topics, I created a small goody / whitepaper with XMLDB DBA / Concepts content.
    For those who are interested, have a look here:
    - An introduction into Oracle XMLDB 11gR1 (pdf - 4 Mb):
    http://www.liberidu.com/blog/images/Marco%20Gralike%20-%20An%20introduction%20into%20Oracle%20XMLDB%2011gR1.pdf
    Content:
    - XML(DB) Concepts
    - XML Storage
    - XMLIndex
    - Security
    - The Protocol Listener
    - APEX

    What error? Please be exact.

  • Oracle 11.1.0.7.0 patch 5 for windows 2003 x64.. Please help.

    Hello All
    I have Oracle EE 11.1.0.7.0 running on Windows 2003 x64 server plus ASM, and I want to apply patch 5, so that it becomes 11.1.0.7.5.
    I came to know from Oracle Support Services, Windows patche comes as bundled patchset, but I am not sure which patch to apply, there are 38 of them. Is 11.1.0.7.5P the correct one?.
    Patchset Avaialble:
    11.1.0.7.0 Patch 38 (11.1.0.7.38P) 32-Bit Patch:11741169 64-Bit (x64) Patch:11741170
    11.1.0.7.0 Patch 37 (11.1.0.7.37P) 32-Bit Patch:10636464 64-Bit (x64) Patch:10636465
    11.1.0.7.0 Patch 36 (11.1.0.7.36P) 32-Bit Patch:10350787 64-Bit (x64) Patch:10350788
    11.1.0.7.0 Patch 35 (11.1.0.7.35P) 32-Bit Patch:10245099 64-Bit (x64) Patch:10245101
    11.1.0.7.0 Patch 34 (11.1.0.7.34P) 32-Bit Patch:10168052 64-Bit (x64) Patch:10168056
    11.1.0.7.0 Patch 33 (11.1.0.7.33P) 32-Bit Patch:9773817 64-Bit (x64) Patch:9773825
    11.1.0.7.0 Patch 32 (11.1.0.7.32P) 32-Bit Patch:9930894 64-Bit (x64) Patch:9930895
    11.1.0.7.0 Patch 31 (11.1.0.7.31P) 32-Bit Patch:9846179 64-Bit (x64) Patch:9846180
    11.1.0.7.0 Patch 30 (11.1.0.7.30P) 32-Bit Patch:9869911 64-Bit (x64) Patch:9869912
    11.1.0.7.0 Patch 29 (11.1.0.7.29P) 32-Bit Patch:9718019 64-Bit (x64) Patch:9718020
    11.1.0.7.0 Patch 28 (11.1.0.7.28P) 32-Bit Patch:9707661 64-Bit (x64) Patch:9707665
    11.1.0.7.0 Patch 27 (11.1.0.7.27P) 32-Bit Patch:9604444 64-Bit (x64) Patch:9604446
    11.1.0.7.0 Patch 26 (11.1.0.7.26P) 32-Bit Patch:9523179 64-Bit (x64) Patch:9523181
    11.1.0.7.0 Patch 25 (11.1.0.7.25P) 32-Bit Patch:9392331 64-Bit (x64) Patch:9392335
    11.1.0.7.0 Patch 24 (11.1.0.7.24P) 32-Bit Patch:9384493 64-Bit (x64) Patch:9384497
    11.1.0.7.0 Patch 23 (11.1.0.7.23P) 32-Bit Patch:9264211 64-Bit (x64) Patch:9264214
    11.1.0.7.0 Patch 22 (11.1.0.7.22P) 32-Bit Patch:9166858 64-Bit (x64) Patch:9166861
    11.1.0.7.0 Patch 21 (11.1.0.7.21P) 32-Bit Patch:9082702 64-Bit (x64) Patch:9082709
    11.1.0.7.0 Patch 20 (11.1.0.7.20P) 32-Bit Patch:9025140 64-Bit (x64) Patch:9025144
    11.1.0.7.0 Patch 19 (11.1.0.7.19P) 32-Bit Patch:8928976 64-Bit (x64) Patch:8928977
    11.1.0.7.0 Patch 18 (11.1.0.7.18P) 32-Bit Patch:8832980 64-Bit (x64) Patch:8832986
    11.1.0.7.0 Patch 17 (11.1.0.7.17P) 32-Bit Patch:8783655 64-Bit (x64) Patch:8783657
    11.1.0.7.0 Patch 16 (11.1.0.7.16P) 32-Bit Patch:8689191 64-Bit (x64) Patch:8689199
    11.1.0.7.0 Patch 15 (11.1.0.7.15P) 32-Bit Patch:8655458 64-Bit (x64) Patch:8655460
    11.1.0.7.0 Patch 14 (11.1.0.7.14P) 32-Bit Patch:8603948 64-Bit (x64) Patch:8603952
    11.1.0.7.0 Patch 13 (11.1.0.7.13P) 32-Bit Patch:8553512 64-Bit (x64) Patch:8553515
    11.1.0.7.0 Patch 12 (11.1.0.7.12P) 32-Bit Patch:8508245 64-Bit (x64) Patch:8508247
    11.1.0.7.0 Patch 11 (11.1.0.7.11P) 32-Bit Patch:8451592 64-Bit (x64) Patch:8451598
    11.1.0.7.0 Patch 10 (11.1.0.7.10P) 32-Bit Patch:8416539 64-Bit (x64) Patch:8416540
    11.1.0.7.0 Patch 9 (11.1.0.7.9P) 32-Bit Patch:8343061 64-Bit (x64) Patch:8343070
    11.1.0.7.0 Patch 8 (11.1.0.7.8P) 32-Bit Patch:8297200 64-Bit (x64) Patch:8297201
    11.1.0.7.0 Patch 7 (11.1.0.7.7P) 32-Bit Patch:8260294 64-Bit (x64) Patch:8260301
    11.1.0.7.0 Patch 6 (11.1.0.7.6P) 32-Bit Patch:8219259 64-Bit (x64) Patch:8219268
    *11.1.0.7.0 Patch 5 (11.1.0.7.5P) 32-Bit Patch:7712568 64-Bit (x64) Patch:7712570*
    11.1.0.7.0 Patch 4 (11.1.0.7.4P) 32-Bit Patch:7682184 64-Bit (x64) Patch:7682189
    11.1.0.7.0 Patch 3 (11.1.0.7.3P) 32-Bit Patch:7664953 64-Bit (x64) Patch:7675231
    11.1.0.7.0 Patch 2 (11.1.0.7.2P) 32-Bit Patch:7586190 64-Bit (x64) Patch:7586195
    11.1.0.7.0 Patch 1 (11.1.0.7.1P) Only available in 32-Bit Patch:7540527
    Any help would be great.
    Regards
    Amit

    Hi All
    I have applied this patch 38 for Oracle 11.1.0.7.0 on Windows 2003 x64 bit server today but the database version from v$version didn't change at all and still its showing 11.1.0.7.0, I expected it to show 11.1.0.7.5.
    Any suggestions.
    Regards
    Amit

  • Unable to install Adobe CS5 64 bit package created using Adobe Application Manager on Windows 7 64

    I am unable to install Adobe CS5 64 bit package created using Adobe Application Manager on Windows 7 64 bit.Basically installation rollback on Win 7 64 bit image.
    MSI Log File :-
    Property(S): ProductToBeRegistered = 1
    MSI (s) (5C:D4) [17:59:21:784]: Note: 1: 1708
    MSI (s) (5C:D4) [17:59:21:784]: Product: Adobe_CreativieSuite_5_MNT -- Installation operation failed.
    MSI (s) (5C:D4) [17:59:21:784]: Windows Installer installed the product. Product Name: Adobe_CreativieSuite_5_MNT. Product Version: 1.2.0000. Product Language: 1033. Manufacturer: Adobe Systems Incorporated. Installation success or error status: 1603.
    Please let me how to install 64 bit package on Win7 64 bit.
    Thanks in Advance.

    Ok so I downloaded the most current installer CS5.1, My previous installer was version 5.0. It did install fine fully updated to my license version. I just wanted to update in case anyone in the future has a similiar experience. Too bad this advice was not offered by the "experts" here.

Maybe you are looking for

  • HT201274 how to restore my iphone when my phone cant turn on

    my iphone 4 want to upgrade to ios 7,after few hour later my iphone screen turn it into plug in itunes logo.then when i plug in to the computer,it show i needed to restore my iphone.but the problem is my phone cant open to the main page,it just stuck

  • Can't drag songs from library to playlist

    I've created many playlists over the last year and have a fair amount of experience in doing so. However, today I imported some music from several CDs and tried to create a new playlist. For some reason it will not allow me to drag any song to a new

  • Why is Compressor Grayed out!? I have the original disk!

    Thanks Apple! I had to reinstall FCP 4.5 because an auto update killed my FCP application performance. OK, fine, so I reinstalled the software and what do you know, NO COMPRESSOR. When I go to install it's grayed out as even an option. I paid for it

  • Footage stalling as being captured

    Am panicking! I am in the middle of logging 7 tapes of footage- all HDV (downconverting to DV) on my Final Cut Pro 5.0.4 with PowerBook G4. the first 3 tapes were fine, from tape 4 it began not playing back properly to the computer- on the camera scr

  • Switching the language of the "Crystal Reports for Eclipse" plugin

    Good day everyone, I would like to ask about configuring the language of the "Crystal Reports for Eclipse" plugin: - I have "Crystal Reports for Eclipse" version: 2.0.7.r1040 - I have installed the language packs 1 and 2 - Currently, the Crystal Repo