Installing  64-bit ODAC 11.2 Release 3 (11.2.0.2.1) for Windows x64

Dear all;
I just downloaded 64-bit ODAC 11.2 Release 3 (11.2.0.2.1) for Windows x64 on my local pc...I am trying to run the install.bat after unzipping the file however, the black pop-up window comes up and disappears almost immediately. Does anyone know what is causing this. Also all help is appreciated with the installation. Kindly note, I have read the installation manual and it is not really helpful.

this is the content of it
@echo off
REM ====================================
REM ODAC 11.2.0.2.1 XCOPY INSTALL SCRIPT
REM ====================================
REM
REM  This batch file installs components in an Oracle Instant Client Home
REM
REM  ====================
REM  MODIFICATION HISTORY
REM  ====================
REM 
REM  11/15/10 - change version number to 11.2.0.2.1
REM  06/30/10 - change version number to 11.2.0.1.2
REM             Add ODP.NET 4 and ASP.NET 4 components
REM  08/21/09 - change version number to 11.1.0.7.20
REM  08/21/09 - remove component odp.net 1.x
REM  01/22/08 - Handle directory names with spaces
REM  01/22/08 - Fixed oracle.key file generation so that products that rely on
REM             it can reference the appropriate registry location
REM  01/22/08 - Log all xcopy operations to the install.log in the destination
REM             directory
goto :ParseArgs
REM **********************
REM INSTALL ALL COMPONENTS
REM **********************
:InstallAll
REM installing everything so set DEP to false or else dependencies such as
REM basic client will get installed needlessly by each component
set DEP=false
call :basic %1 %2 %3 %4
call :odp.net20 %1 %2 %3 %4
call :odp.net4 %1 %2 %3 %4
call :asp.net %1 %2 %3 %4
call :asp.net4 %1 %2 %3 %4
call :oledb %1 %2 %3 %4
call :oramts %1 %2 %3 %4
goto :EOF
REM ************************
REM INSTALL ASPNET Providers
REM ************************
:asp.net
REM echo Please wait... installing Oracle Providers for ASP.NET
if {%DEP%} == {true} (
call :odp.net20 %1 %2 %3 %4
echo *************************************** >> %2\install.log
echo Installing Oracle Providers for ASP.NET >> %2\install.log
echo *************************************** >> %2\install.log
REM copy the files
xcopy asp.net %2 /E /F /R /Y >> %2\install.log
echo.>> %2\install.log
pushd %2
REM pass in false for dependency because odp.net2x files are not copied over yet
REM not calling confifure.bat as follows since on Win2k when dir names contain
REM a space it has issues when retreiving CURRENT DIR in configure.bat
REM call %2\configure.bat asp.net %3 false
call configure.bat asp.net %3 false
popd
echo.>> %2\install.log
echo ************************************** >> %2\install.log
echo Oracle Providers for ASP.NET installed >> %2\install.log
echo ************************************** >> %2\install.log
echo.>> %2\install.log
REM echo Oracle Providers for ASP.NET installed in an Oracle Instant Client Home.
goto :EOF
REM **************************
REM INSTALL ASPNET Providers 4
REM **************************
:asp.net4
REM echo Please wait... installing Oracle Providers for ASP.NET 4
if {%DEP%} == {true} (
call :odp.net4 %1 %2 %3 %4
echo ***************************************** >> %2\install.log
echo Installing Oracle Providers for ASP.NET 4 >> %2\install.log
echo ***************************************** >> %2\install.log
REM copy the files
xcopy asp.net4 %2 /E /F /R /Y >> %2\install.log
echo.>> %2\install.log
pushd %2
REM pass in false for dependency because odp.net4 files are not copied over yet
REM not calling confifure.bat as follows since on Win2k when dir names contain
REM a space it has issues when retreiving CURRENT DIR in configure.bat
REM call %2\configure.bat asp.net4 %3 false
call configure.bat asp.net4 %3 false
popd
echo.>> %2\install.log
echo **************************************** >> %2\install.log
echo Oracle Providers for ASP.NET 4 installed >> %2\install.log
echo **************************************** >> %2\install.log
echo.>> %2\install.log
REM echo Oracle Providers for ASP.NET 4 installed in an Oracle Instant Client Home.
goto :EOF
REM *******************
REM INSTALL ODP.NET 2.0
REM *******************
:odp.net20
REM echo Please wait... installing Oracle Data Provider for .NET 2.0
if {%DEP%} == {true} (
call :basic %1 %2 %3 %4
echo ******************************************** >> %2\install.log
echo Installing Oracle Data Provider for .NET 2.0 >> %2\install.log
echo ******************************************** >> %2\install.log
REM copy the files
xcopy odp.net20 %2 /E /F /R /Y >> %2\install.log
echo.>> %2\install.log
pushd %2
REM not calling confifure.bat as follows since on Win2k when dir names contain
REM a space it has issues when retreiving CURRENT DIR in configure.bat
REM call %2\configure.bat odp.net20 %3
call configure.bat odp.net20 %3
popd
echo.>> %2\install.log
echo ******************************************* >> %2\install.log
echo Oracle Data Provider for .NET 2.0 installed >> %2\install.log
echo ******************************************* >> %2\install.log
echo.>> %2\install.log
REM echo Oracle Data Provider for .NET 2.0 installed in an Oracle Instant Client Home.
goto :EOF
REM *****************
REM INSTALL ODP.NET 4
REM *****************
:odp.net4
REM echo Please wait... installing Oracle Data Provider for .NET 4
if {%DEP%} == {true} (
call :basic %1 %2 %3 %4
echo ****************************************** >> %2\install.log
echo Installing Oracle Data Provider for .NET 4 >> %2\install.log
echo ****************************************** >> %2\install.log
REM copy the files
xcopy odp.net4 %2 /E /F /R /Y >> %2\install.log
echo.>> %2\install.log
pushd %2
REM not calling confifure.bat as follows since on Win2k when dir names contain
REM a space it has issues when retreiving CURRENT DIR in configure.bat
REM call %2\configure.bat odp.net4 %3
call configure.bat odp.net4 %3
popd
echo.>> %2\install.log
echo ***************************************** >> %2\install.log
echo Oracle Data Provider for .NET 4 installed >> %2\install.log
echo ***************************************** >> %2\install.log
echo.>> %2\install.log
REM echo Oracle Data Provider for .NET 4 installed in an Oracle Instant Client Home.
goto :EOF
REM *************
REM INSTALL OLEDB
REM *************
:oledb
REM echo Please wait... installing Oracle Provider for OLEDB
if {%DEP%} == {true} (
call :basic %1 %2 %3 %4
echo ************************************* >> %2\install.log
echo Installing Oracle Provider for OLE DB >> %2\install.log
echo ************************************* >> %2\install.log
REM copy the files
xcopy oledb %2 /E /F /R /Y >> %2\install.log
echo.>> %2\install.log
pushd %2
REM not calling confifure.bat as follows since on Win2k when dir names contain
REM a space it has issues when retreiving CURRENT DIR in configure.bat
REM call %2\configure.bat oledb %3
call configure.bat oledb %3
popd
echo.>> %2\install.log
echo ************************************ >> %2\install.log
echo Oracle Provider for OLE DB installed >> %2\install.log
echo ************************************ >> %2\install.log
echo.>> %2\install.log
REM echo Oracle Provider for OLEDB installed in an Oracle Instant Client Home.
goto :EOF
REM **************
REM INSTALL ORAMTS
REM **************
:oramts
REM echo Please wait... installing Oracle Services for MTS
if {%DEP%} == {true} (
call :basic %1 %2 %3 %4
echo ********************************** >> %2\install.log
echo Installing Oracle Services for MTS >> %2\install.log
echo ********************************** >> %2\install.log
REM copy the files
xcopy oramts %2 /E /F /R /Y >> %2\install.log
echo.>> %2\install.log
pushd %2
REM not calling confifure.bat as follows since on Win2k when dir names contain
REM a space it has issues when retreiving CURRENT DIR in configure.bat
REM call %2\configure.bat oramts %3
call configure.bat oramts %3
popd
echo.>> %2\install.log
echo ********************************* >> %2\install.log
echo Oracle Services for MTS installed >> %2\install.log
echo ********************************* >> %2\install.log
echo.>> %2\install.log
REM echo Oracle Services for MTS installed in an Oracle Instant Client Home.
goto :EOF
REM ***********************************
REM INSTALL Basic Oracle Instant Client
REM ***********************************
:basic
REM echo Please wait... installing Basic Oracle Instant Client
echo ************************************** >> %2\install.log
echo Installing Basic Oracle Instant Client >> %2\install.log
echo ************************************** >> %2\install.log
REM copy the files
xcopy instantclient_11_2 %2 /E /F /R /Y >> %2\install.log
echo.>> %2\install.log
pushd %2
call configure.bat basic %3
popd
echo.>> %2\install.log
echo ************************************* >> %2\install.log
echo Basic Oracle Instant Client installed >> %2\install.log
echo ************************************* >> %2\install.log
echo.>> %2\install.log
REM echo Basic Oracle Instant Client installed.
REM echo.
REM echo Please prepend %2 and %2\bin to system path environment variable
goto :EOF
REM =======================
REM Parse Script Arguments
REM =======================
:ParseArgs
if /i {%1} == {} goto :Usage
if /i {%2} == {} goto :Usage
if /i {%3} == {} goto :Usage
if /i {%1} == {-h} goto :Usage
if /i {%1} == {-help} goto :Usage
REM install dependencies or not - default is true
set DEP=true
if /i {%4} == {false} set DEP=false
if NOT EXIST %2\*.* (
  mkdir %2 > NUL 2>&1
echo ****************** >> %2\install.log
echo ODAC install files >> %2\install.log
echo ****************** >> %2\install.log
REM /R to overwrite readonly files at destination
REM /Y to overwrite an existing file without prompting
xcopy configure.bat %2 /R /Y /F >> %2\install.log
xcopy unconfigure.bat %2 /R /Y /F >> %2\install.log
xcopy uninstall.bat %2 /R /Y /F >> %2\install.log
echo.>> %2\install.log
if /i {%1} == {basic}     goto :basic
if /i {%1} == {odp.net20} goto :odp.net20
if /i {%1} == {odp.net2}  goto :odp.net20
if /i {%1} == {odp.net4}  goto :odp.net4
if /i {%1} == {asp.net}   goto :asp.net
if /i {%1} == {asp.net2}  goto :asp.net
if /i {%1} == {asp.net4}  goto :asp.net4
if /i {%1} == {oledb}     goto :oledb
if /i {%1} == {oramts}    goto :oramts
if /i {%1} == {all}       goto :InstallAll
goto :Usage
:Usage
echo.
echo Usage:
echo   install.bat component_name oracle_home_path oracle_home_name [install_dependents]
echo.
echo Example:
echo   install.bat all       c:\oracle myhome       (install all components)
echo   install.bat odp.net2  c:\oracle myhome true  (install ODP.NET 2 and its dependent components)
echo   install.bat odp.net4  c:\oracle myhome true  (install ODP.NET 4 and its dependent components)
echo   install.bat asp.net2  c:\oracle myhome true  (install ASP.NET Providers 2 and its dependent components)
echo   install.bat asp.net4  c:\oracle myhome true  (install ASP.NET Providers 4 and its dependent components)
echo   install.bat oledb     c:\oracle myhome true  (install OraOLEDB and its dependent components)
echo   install.bat oramts    c:\oracle myhome true  (install ORAMTS and its dependent components)
echo   install.bat basic     c:\oracle myhome false (install Oracle Instant Client)
goto :EOF

Similar Messages

  • New Driver Creative Sound Blaster Live! 24-bit 1.04.0050 WHQL For Windows x64

    This is the new  Official Audio driver  released by Creative for  Sound Blaster Live! 24-bit for Windows x64.
    You can not install this driver in your MSI nForce4 based boards without first applying the OnBoard Sound EEPROM fix first found  here
    You have to boot in win98 or  winMe using a boot diskette in order to run the fix.
    enjoy 
    Markoul

    Quote from: Markoul on 22-May-05, 00:07:32
    This is the new  Official Audio driver  released by Creative for  Sound Blaster Live! 24-bit for Windows x64.
    You can not install this driver in your MSI nForce4 based boards without first applying the OnBoard Sound EEPROM fix first found  here
    You have to boot in win98 or  winMe using a boot diskette in order to run the fix.
    enjoy 
    Markoul
    Have you actually tired it yourself?  I'm wondering if this is a workaround, or will this be the official solution.  I wouldn't mind trying it, but I don't want to mess it up for when the Official driver is released.

  • J2SE 1.4.2 for Windows x64 bit download link

    Dear All,
    Can any one give me the link to download J2SE 1.4.2 for Windows x64 bit architecture?
    Your help is highly appreciated.
    Regards,
    Syed

    There should be no issues with using SAP JVM from the start.
    Probably no notes because is straightforward:
    - Extract the SAP JVM (e.g. c:\sapjvm_4)
    - Set JAVA_HOME (c:\sapjvm_4)
    And start installation as per guide.
    We have done this recently with Solman 7 EHP1 and NW 7 EHP1 (J2EE stack).
    We did have issue on central instance install where the J2EE instance would not start part way through installation (server0 continually crashed and restarted with memory issues) so we had to adjust the instance settings as per SAP Note#1603093, before retrying in SAPINST and continuing.
    We had this problem with both Solman & NW 7 EHP1.

  • Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for Windows

    Any new guestimates when product "Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for WINDOWS" will finally become available.
    Thanks.

    Below is what's available for download thru OTN. To ensure my question is clear, approximately when will the MICROSOFT WINDOWS version finally be released:
    Enterprise Manager 10g Grid Control Release 1 (10.1.0.2)
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for Linux x86
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for Solaris Operating System (SPARC) (32-bit)
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for HP-UX
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for AIX5L Based Systems
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for HP Tru64 UNIX

  • ITunes 11.2.2 for Windows x64 will not successfully install.  Removed prior iTunes, and still will not install. 10.7 installs just fine, but constantly asks to upgrade to 11.2.2.  Any Thoughts?

    iTunes 11.2.2 for Windows x64 will not successfully install.  Removed prior iTunes, and still will not install. 10.7 installs just fine, but constantly asks to upgrade to 11.2.2.  Any Thoughts?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if one component won't install normally.
    If needs be, the Microsoft Program Install and Uninstall Utility (MS Installer "Fixit") may be able to help force through the installation.
    tt2

  • My Ipod touch Is stuck in restoe mode. I have reinstalled Itunes 10.4 .1 10. windows says drivers are not installed. I have followed all trouble shooting advice, fixes and updates for windows 7

    I have reinstalled Itunes 10.4 .1 10. windows says drivers are not installed. I have followed all trouble shooting advice, fixes and updates for windows 7

    I have reinstalled Itunes 10.4 .1 10. windows says drivers are not installed. I have followed all trouble shooting advice, fixes and updates for windows 7

  • Oracle9i Database Release 2 Enterprise/Standard/Personal Edition for Windows NT/2000/

    Hi,
    Ive just been trying to download your Oracle9i Database Release Enterprise/Standard/Personal Edition for Windows NT/2000/XP for my home computer, but it wont even download properly. The Disk 1 file, "92010NT_Disk1.zip", intializes, and downloads in less than a second, saying all 67.7kb is complete, taking into consideration the file is over 600mb big. When i open the *.zip file, its absolutely empty. I tried the links for Disk 2 and Disk 3, and they are working perfectley.
    Whats going on?
    Is there a bug on my side, or OTN's?
    Will this be fixed soon?
    Or should i download an older version?
    A little feed back would be grately appreciated, due to the fact i cant find the latest version of Oracle anywhere else on the World Wide Web.
    Thank you for your time.
    - File: 92010NT_Disk1.zip
    - Date/Time: 03/09/02 11:30PM
    - Internet Browser: IE 6.0.2600.0000
    - O/S: Windows 2000
    PS: Your "Preview" Button didnt seem to work for me either.

    Hi Peter,
    I downloaded the same zip files as you did for my home pc. The first zip file was not able to be unzipped by winzip. So I had to download the fisrt zip file again from OTN and the second time it was fine. I got all three zip files extracted and ran the setup.exe. Everything was fine till this point.
    My problem is that Oracle 9i release 2 personal edition is not for XP home edition. I couldn't get the database correctly configured.
    Li

  • Any plan of releasing REAL WORKING sound card drivers for windows 8.1 one day???

    Hello,
    As you probably saw, I am one of the countless people having an issue with my sound blaster card with windows 8.1, and desperately waiting a new proper driver until months now... in vain, and with no answer from anyone from the creative support team, who are just ignoring it...
    I say countless, because I can see over Internet a huge amount of people having those issues, and this forum doesn't represent it, because it is a pain to get the account activated to post anything.
    Here is my question : can I throw away my relatively new high end sound card like a piece of useless crap now and buy a real piece of hardware, or are you planning to give us a chance of not wasting our money soon??
    Just for your information, Realtek has released their working windows 8.1 drivers since 5 months now.
    I know that Creative is in a position of strength in this market, because there is almost no other viable options, but does it means you have to abuse it?
    Sorry if my message seems a bit hungry, right now I really feel like a disappointed customer who was trusting this company to buy a really great piece of hardware, but sadly can't get it working anymore, and being ignored.
    I believe that being ignored is the least respectful answer of all.

    Well, that is exactly what I was saying... still no answer from anybody.
    Seriously Creative, when you want to make a product become obsolete by releasing a new version of your products (SBX), you should at least have the honesty to say that the old products are not supported anymore in windows 8.1...
    I have installed windows 8.1, with no possibilities to revert back to windows 7, knowing from your website that my card is compatible (see here), and now my sound card is just an expensive useless piece of electronic taking dust on my desk... which i bought less than one year ago.
    From your silence, should I guess that there will be no update or support anymore for this card in windows 8.1? In that case, is their any way I can send it back to creative technical support to exchange for a working model? Or at least a discount for the new model??

  • Discoverer Patch Release 2 (9.0.2.53) for Windows

    I can't get the response file to work correctly. If I set SHOW_RELEASE_NOTES to false it still shows up. I need to accomplish this install silently. All of the other boolean operators work fine, the release notes is the only window I get. I have tried changing it to SHOW_RELEASE_NOTES_PAGE with no luck. Any ideas?

    It seems that it is only possible to start download of two files at a time. If you try to start more, the system hangs up. If you are trying to download the version that is split in ten files, you have to do this one file at a time. If you are trying to download a single file, make sure that this is the ONLY download session that is running on your computer.
    Yours sincerely
    Niels Terp

  • Oracle Enterprise Manager Cloud Control 12c Release 1 (12.1.0.1) for Window

    Hi,
    When we run the setup.exe (Disk 1) on windows machine, Installation Wizard does not appear. So we couldn’t go ahead further steps for the installation. Please help us.
    Thanks,
    Jebastin.

    I have see similar issue...
    Please validate whether there is any Anti Virus installed on your Windows machine...
    If it is installed, disable it temporarily... The Anti Virus typically blocks such Installers.exe which are about to generate more than 65535 files...
    Second possibility can be you don't have enough permission i.e. you don't have Admin permission on this Windows machine...
    Third possibility can be that the installer in itself might be corrupt...

  • 32-bit ODAC 11.2.0.2.1 Installed on Win7 X64 with Oracle 11gR2 x64

    I have Visual Studio 2010 x64 installed on a Win7 x64 Enterprise system, along with Oracle Express Edition 11gR2 x64. I downloaded and installed 32-bit ODAC 11.2.0.2.1 so I could use Oracle databases with Visual Studio, along with SQL Server.
    When I tried to run InstallAllOracleASPNETProviders.sql in SqlExplorer, I got an error
    D:\app\PaulK\product\11.2.0\client_1\ocijdbc11.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform. Vendor code 0.
    Everything was working fine before I installed ODAC 11.2.0.2.1.
    I've seen references to a beta x64 version of ODAC. Where do I find it? Do I have to uninstall the 32-bit ODAC first? Will uninstalling the 32-bit ODAC fix SqlExplorer?
    Thanks.

    PaulK wrote:
    I have Visual Studio 2010 x64 installed on a Win7 x64 Enterprise system, along with Oracle Express Edition 11gR2 x64. Not sure I follow. Neither VS 2010 or XE 11.2 exists in a 64-bit release. What precisely do you have installed?
    I downloaded and installed 32-bit ODAC 11.2.0.2.1 so I could use Oracle databases with Visual Studio, along with SQL Server.Since VS is a 32-bit app (though it can run on 64-bit OS and produce 64-bit binaries), it needs 32-bit libraries, yes.
    Is MS SQL Server instance a 32-bit or a 64-bit install? Perhaps both 32-bit and 64-bit clients are needed for planned setup.
    D:\app\PaulK\product\11.2.0\client_1\ocijdbc11.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform. Vendor code 0.It seems you are running SQL Developer on a 64-bit java machine. The 64-bit jvm obviously can't load a 32-bit dll, which I'm guessing was found via the 32-bit ODAC's PATH entry. Entry was listed first since Client/ODAC was installed last. Did you use Connection type TNS in SQL Developer? (Or Use OCI/Thick driver ticked in the database / advanced options, in Preferences.)
    What's the version of SQL Developer?
    Everything was working fine before I installed ODAC 11.2.0.2.1.If I'm correct in various assumptions, you have to cater for different environments/requirements.
    E.g to run SQL Developer with correct set of libs.
    set PATH=<path to libraries for sql developer/jvm>;<remaining PATH stuff>
    x:\some\path\here\sqldeveloper.exe
    Another way could be to use Instant Client and drop required lib files (.dll) in proper location within SQL Developer home. (So that it will find proper dlls directly in "cwd" instead of searching via PATH.)
    I've seen references to a beta x64 version of ODAC. Where do I find it? There are both production and beta releases.
    64-bit ODAC home page:
    http://www.oracle.com/technetwork/database/windows/downloads/index-090165.html
    Edited by: orafad on Dec 3, 2011 10:20 PM
    Edited by: orafad on Dec 4, 2011 1:31 AM

  • ODAC 11.2 Release 4 (11.2.0.3.0)

    Hi,
    Please can someone answer those questions:
    Can I install ODAC 11.2 Release 4 on an existant Oracle client 11.2.0.1.0? (not instant client)
    and if so, when I try to install the component ODAC 11.2 Release 4 using Oracle UI, the sub-component 'Instant client' is mandatory (can't uncheck it). I'm a little bit confused because I don't won't install instant client over 'Oracle client 11.2.0.1.0', Is there something should I worry about it, or let the installation continue without worrying;
    thanks in advance
    S. Hage

    From the readme.. http://www.oracle.com/technetwork/topics/dotnet/downloads/install112030-1440546.html
    <SNIP>
    4. It is highly recommended ODAC be installed into a new Oracle Home. Installing ODAC on top of an existing Oracle home may break existing Oracle applications. If you do install on top of an existing Oracle Home, make sure to stop all the Windows services using that Oracle Home (e.g. OracleMTSRecoveryService). Uninstall all the products in the existing Oracle Home before installing the new ODAC version
    </SNIP>
    You should just install into a new home.
    Greg

  • Are the ODT tools really included in ODAC 11.2 Release 3 (11.2.0.2.1)

    I have installed ODAC 11.2 Release 3 and Oracle Developer Tools for Visual Studio (11.2.0.2.1) using the download at http://download.oracle.com/auth/otn/other/ole-oo4o/ODTwithODAC112021.zip onto a PC running VS2010 running Windows XP Professional SP3.
    This has successfully installed the Oracle data providers and "ODAC Documentation for Visual Studio 2010" (which I can access and use successfully from within VS2010) but there is no sign of any of the ODT tools !
    I have tried digging into the install files and can find no evidence of the ODT install.
    Can anyone confirm (or not) that ODT is part of this install please ?

    Thanks for the updates - yes, I forgot to say that I am running VS2010 Premium, sorry.
    I don't get ODP.NET in Server Explorer, I only get the standard Microsoft providers (including Microsoft's Oracle provider).
    My OUI "installActions" log shows:
    INFO: Current Inventory:
         Oracle Home: OraClient11g_home1
              Sun JDK 1.5.0.24.08
              Installer SDK Component 11.2.0.2.0
              Oracle One-Off Patch Installer 11.2.0.0.2
              Oracle Universal Installer 11.2.0.2.0
              SQL*Plus Files for Instant Client 11.2.0.2.0
              RDBMS Required Support Files for Instant Client 11.2.0.2.0
              SSL Required Support Files for InstantClient 11.2.0.2.0
              Oracle Globalization Support 11.2.0.2.0
              Oracle JDBC/OCI Instant Client 11.2.0.2.0
              Oracle ODBC Driverfor Instant Client 11.2.0.2.0
              Oracle Instant Client 11.2.0.2.0
              Oracle Data Access Components Documentation 11.2.0.2.0
              Oracle Services For Microsoft Transaction Server 11.2.0.2.0
              Oracle Objects for OLE 11.2.0.2.0
              Oracle Provider for OLE DB 11.2.0.2.0
              Oracle Data Provider for .NET 11.2.0.2.0
              Oracle Providers for ASP.NET 11.2.0.2.0
              Oracle Data Access Components Documentation for Visual Studio 2010 11.2.0.2.0
              Oracle Data Access Components for Oracle Client 11.2.0.2.1
    Should I see ODT in there as a part of the inventory ?
    Could anyone point me at something in the VS configuration files that should reference ODT so that I can definitively say whether the tools have been installed and properly integrated.
    Thanks again.

  • Install Oracle Hyperion Planning, Fusion Edition Release 11.1.1.3.0

    Hi Friends,
    I want to install Oracle Hyperion Planning, Fusion Edition Release 11.1.1.3.0. on windows
    Please let me know what are all the Pre-reqs needs to be installed and how to install Oracle Hyperion Planning, Fusion Edition Release 11.1.1.3.0.
    Provide me the installation document as well for all these.
    Regards,
    DB

    Hi,,
    You can download PDF
    [download.oracle.com/docs/cd/E12825_01/epm.../epm_install.pdf]
    and see all req. before downloading all components from
    [http://edelivery.oracle.com]
    Thanks
    Focusthread Hyperion Trainer
    [http://focusthread.com/training]

  • Remote Agent for ACS for Windows 2008 R2 64-bit

    Hi,
    We having difficulties with installing remote agent on windows 2008 R2 64-bit server and got the attached error.
    Our ACS is 4.2.0.124 and remote agents we tried are :Remote-Agent-ACSse-win-v4.2.1.15-K9.zip and Acs-4.2.1.15.9-RA.zip.
    I see following urls says it does not support Windows 2008 R2 and also 64-bit Windows,
    https://supportforums.cisco.com/message/3135061#3135061
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_solution_engine/4.2/installation/guide/remote_agent/rawi.html#wp289019
    However following url says its support 2008 R2 with 64-bit version
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4.2.1/Release_Notes/acs421_rn.html
    Appreciate if someone can adivse us what vesion (file name) of Remote Agent can support (or working) for Windows 2008 R2 64-bit.
    thanks in advance

    Hi Tarik,
    What I wanted to say that the below url says that ACS 4.2 does not support on 64-bit OS:
    ACS Requirements
    You must use ACS Remote Agent for Windows, version 4.2, with ACS SE, version 4.2. We do not support other Cisco Secure ACS releases.
    Note ACS Remote Agent 4.2 for Windows does not support 64-bit operating systems.
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_solution_engine/4.2/installation/guide/remote_agent/rawi.html#wp289019
    However could you please let me know what exact Remote Agent file you recommend to use for windwos 2008 R2 64-bit Server. The ACS SE version that I have is 4.2.0.124.
    Thanks

Maybe you are looking for