Problem connecting Oracle client 11g to server 11g

I'm trying to connect a second computer to the Oracle Server computer with a client. I have a listener running, and correct settings for the net manager. The error that I get is:
"the test did not succeed, ORA 12170: TNS connect timeout occurred. there may be an error in the fields entered (they are correct), or the server may not be ready for a connection. Is there something I have to do with the router? I'm on a wireless connection is there any problem with that?

user8953579 wrote:
I'm trying to connect a second computer to the Oracle Server computer with a client. I have a listener running, and correct settings for the net manager. The error that I get is:
"the test did not succeed, ORA 12170: TNS connect timeout occurred. there may be an error in the fields entered (they are correct), or the server may not be ready for a connection. Is there something I have to do with the router? I'm on a wireless connection is there any problem with that?Oracle is oblivious to the fact that the net is wireless.
We need to see your tnsnames.ora and sqlnet.ora files on your client computer.
We need to see the results of
lsnrctl statusfrom the database server
In addition to the following boilerplate comments, I've been doing a series of articles on tns connection issues at edstevensdba.wordpress.com
=================================
A couple of important points.
First, the listener is a +server side only+ process. It's entire purpose in life is to receive requests for connections to databases and set up those connections. Once the connection is established, the listener is out of the picture. It +creates+ the connection. It doesn't +sustain+ the connection. One listener, with the default name of LISTENER, running from one oracle home, listening on a single port, will serve multiple database instances of multiple versions running from multiple homes. It is an unnecessary complexity to try to have multiple listeners or to name the listener as if it belongs to a particular database. That would be like the telephone company building a separate switchboard for each customer.
Additional notes on the listener: One listener is capable of listening on multiple ports. But please notice that it is the *listener* using these ports, not the database instance. You can't bind a specific listener port to a specific db instance. Similarly, one listener is capable of listnening on multiple IP addresses (in the case of a server with multiple NICs) But just like the port, you can't bind a specific ip address to a specific db instance.
Second, the tnsnames.ora file is a +client side+ issue. It's purpose is for address resolution - the tns equivalent of the 'hosts' file further down the network stack. The only reason it exists on a host machine is because that machine can also run client processes.
Assume you have the following in your tnsnames.ora:
{code}
larry =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
(CONNECT_DATA =
(SERVICE_NAME = curley)
{code}
Now, when you issue a connect, say like this:
{code}
$> sqlplus scott/tiger@larry
{code}
tns will look in your tnsnames.ora for an entry called 'larry'. Finding it, tns sends a request through the normal network stack to (PORT = 1521) on (HOST = myhost) using (PROTOCOL = TCP), asking for a connection to (SERVICE_NAME = curley).
Where is (HOST = myhost) on the network? When the request gets passed from tns to the next layer in the network stack, the name 'myhost' will get resolved to an IP address, either via a local 'hosts' file, via DNS, or possibly other less used mechanisms. You can also hard-code the ip address (HOST = 123.456.789.101) in the tnsnames.ora.
Next, the standard networking process delivers the message to port 1521 on myhost. Hopefully, there is a listener on myhost configured to listen on port 1521, and that listener knows about SERVICE_NAME = curley. If so, the listener will spawn a server process to act as the intermediary between your client and the database instance. Communication to the server process will be on a randomly selected available port. At that point the listener is out of the process and continues to user port 1521 to await other connection requests.
What can go wrong?
First, there may not be an entry for 'larry' in your tnsnames. In that case you get "ORA-12154: TNS:could not resolve the connect identifier specified" No need to go looking for a problem on the host, with the listener, etc. If you can't place a telephone call because you don't know the number (can't find your telephone directory (tnsnames.ora) or can't find the party you are looking for listed in it (no entry for larry)) you don't look for problems at the telephone switchboard.
Maybe the entry for larry was found, but myhost couldn't be resolved to an IP address (say there was no entry for myhost in the local hosts file). This will result in "ORA-12545: Connect failed because target host or object does not exist"
Maybe there was an entry for myserver in the local hosts file, but it specified a bad IP address. This will result in "ORA-12545: Connect failed because target host or object does not exist"
Maybe the IP was good, but there is no listener running: "ORA-12541: TNS:no listener"
Maybe the IP was good, there is a listener at myhost, but it is listening on a different port. "ORA-12560: TNS:protocol adapter error"
Maybe the IP was good, there is a listener at myhost, it is listening on the specified port, but doesn't know about SERVICE_NAME = curley. "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor"
================

Similar Messages

  • Problem Installing Oracle Client 11g R2 64 bit on Windows 7 Enterprise 64

    Hi,
    I am having problems installing the Oracle Client 11g R2 64 bit installation on my Windows 7 64 bit Enterprise machine. The installer does all the checks successfully, it gets me to summary screen and I press finish to start the installation. It then opens the installation mask where it first says Checking whether Central Inventory is locked by another OUI session. After that it very briefly shows Central Inventory is not locked and then the window immediately dissapears with no other errors. I tried installing at my colleague's W7 Enterprise 64 machine and it behaves a little differently but with the same result. Basically on his machine it never even opens the Install mask, when pressing finish from the Summary it just disappears and never starts installation. I tried installing 11g R1 and that loads the first mask and when i press next it just dissapears. I basically need an oracle client 64 bit installation on my machine deperately. Please help. Thanks
    Alex

    One user above reported installing the 64 bit odbc drivers and then the 32 bit drivers. How did you do that? I'm a neophyte to this.
    I'm trying to get a 32 bit ODBC oracle driver to work on a server 2008 R2 machine. I downloaded the 11gR2 x64 client from oracle. The install process makes no mention of 32bit vs 64bit installation. After running the instalation I can run the ODBC administrator and generate a DSN for oracle. When I run the 32 ODBC administrator there is no oracle driver available except the microsoft driver for oracle. When I select that it says that I need to install oracle.
    I had at first tried to install 11g instant client. However that didn't work for the 2008 R2 machine. It complained about some registry error when I tried to run the ODBC install program. I need to get it to work for a customer asap.

  • How to connect oracle client (xp) to database server

    how to connect oracle client to database server
    i have following information
    --server ip
    --port no
    --database name.                                                                                                                                                                                                                                               

    In addition to these parameters you need username and password.
    Then you can connect with
    sqlplus -L username@//server_ip:port_no/database_name
    Yours,
    Laurenz Albe

  • Oracle Client 11g R2 in Windows 7 connecting a RAC server

    I have the following setup in my laptop
    Windows 7
    Oracle Client 11g R2
    I'm trying to connect "SQL plus" to a load balanced server (RAC) configured as below
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for HPUX: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    The problem is, the connection creation is not consistent. It is throwing the following error randomly.
    ORA-12545: Connect failed because target host or object does not exist
    I'm able connect to another server (not RAC) without any issues. Even TOAD is giving the same error. After few tries, it works.
    Anyone facing the same problem, got any solution???
    Thanks
    Edited by: user3918865 on Oct 7, 2010 4:14 AM

    Bruno Palma wrote:
    Hi all.
    I've done all the checklists suggested but I'm still getting the error. The problem is not with the network and the servers cos I'm working in a Company and when I had Windows XP SP 3 and Oracle Client 10gR2 all was working fine. I'm with Windows 7 Professional 64-bit now. I'm almost sure the problem is with Windows 7 x Oracle Client but it's hard to figure out what's going on. Does anyone have idea what could it be ??I would generate a client side sqlnet trace, then go on a fishing expedition. There's a lot of dense stuff in a full trace, but if you don't panic and just try to make sense of what you can, you'll probably flush it out.
    To enable the trace, go to your sqlnet.ora file and add these lines:
    TRACE_FILE_CLIENT=clientsqlnet.trc
    TRACE_DIRECTORY_CLIENT=C:\app\oracle\product\11.2.0\client_1\network\trace
    #TRACE_LEVEL_CLIENT=off
    #TRACE_LEVEL_CLIENT=user
    #TRACE_LEVEL_CLIENT=admin
    TRACE_LEVEL_CLIENT=support
    DIAG_ADR_ENABLED = off

  • Oracle Client 11g on Windows 2008 64 bit ASP Connection Problems

    Hi,
    I'm trying to set up my old ASP applications on a new web server. I've moved from a windows 2003 server to 2008 64 bit.
    I've installed the Oracle Client 11g 64 bit drives and if I create a new ODBC connection tat works fine. But IIS will not connect.
    Connection string i've been using is:
    Provider=OraOLEDB.Oracle.1; Password=******; User ID=*****; Data Source=*****
    All i get is no provider could be found.
    "3706 Provider cannot be found. It may not be properly installed."
    Can anyone help me out / point me in the right direction?
    Thanks
    Gareth Owen

    Hi,
    Thanks for the reply. The app pool is running in 64 bit. I've tried installing a 32 bit version of the oracle provider and shifting the app pool down to that and no joy either.
    Have tried changing the permissions on the Oracle folder which gives me no joy. It's as if IIS just has no access to the Oracle provider. But I just don't know how to get this working.
    Under windows 2003 things just worked when I installed the Oracle provider...
    Gareth

  • Oracle Client 11g Release 2 silent installation.

    Hi, I try to make a silent installation of oracle client 11g release 2 for windows 7 enterprise edition.
    I'm familiar with the response file, and how to create this in earlyer versions.
    But the "-record -destinationFile <filepath>" switch do not work, and when I run "setup -help" the -record switch is gone.
    How do you create a response file with 11g release 2?
    Best regards
    Lansti

    Hey Hans - We shouldn't have to read the manual each time a new installer comes out...why would there be a need to constantly redo how the installers works from a general standpoint (like -record)?? Stupid doesn't even begin to describe it.
    Edited by: user10051782 on Jun 2, 2010 1:07 PM

  • From where I can download Oracle Client 11g R2 for Windows 7 64bit? Thanks in advance.

    From where I can download Oracle Client 11g R2 for Windows 7 64bit? Thanks in advance.

    Search engine broken?
    Just search for Oracle 11g download and you get this link on the very first page
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html
    Then select 'See All' from the Microsoft Windows (x64) in the Oracle Database 11g Release 2 section
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html
    Can we assume you know how to search that web page for the word 'Client'?

  • Need the List of the ORACLE Client 11g version/edition list

    Hi All,
    Can anyone share the Oracle Client 11g 32 Bit Version list.
    Regards,
    Mahesh

    -Standard Oracle Client (10g, XE and 11g)
    -Oracle Instant Client (10g and 11g)
    -Oracle Client ODBC Driver (8–11g and XE
    Refer to
    http://www.easysoft.com/support/kb/kb00612.html
    Edited by: Osama_mustafa on Dec 27, 2012 2:46 PM

  • Uninstall Oracle Client 11G

    Hi,
    Some one could tel me how can i do to uninstall Oracle client 11G ?
    Thank's

    Hi,
    Post the OS details.
    For Linux(client 11.2)
    http://docs.oracle.com/cd/E11882_01/install.112/e24322/remove_oracle_sw.htm
    For windows(client 11.1)
    http://docs.oracle.com/cd/B28359_01/install.111/b32007/deinstall.htm
    Please keep forum clean by Marking your Post as "Answered" or "Helpful" if Your question is answered
    Bala:)

  • Requires Oracle client for windows server 2008 Version 6.1

    Hello
    I am using Windows 2008 Server Version 6.1 (64 Bit). I want to install Oracle client on this server. Which version is suitable for my requirement and from where i can download it.
    Thanks
    Sijo Thomas

    user12248518 wrote:
    I am in the same boat, I have downloaded what was told to download and it doesn't install it keeps saying "Unknown" 3 times in a popup when I try to install.Oracle has roughly 3,000 products. You downloaded 'what you were told' - one of those 3,000 products. And it didn't work.
    The amount of information you provide is surprisingly sparse, assuming you want assistance.
    So - if you want help, you might wnat to provide some information:
    - the operating system (including edition, and major service pack if WIndows, or distro && major/minor release and kernel if *nix)
    - the URL froim which you downloaded
    - the country yuo are in (since ORacle could redirect to several sitres based on region)
    - the command or executable, including directory path, you run or double-click on
    - the 'exact' error message, or if a generic one like "Unknown", perhaps a screen shot to convince us that it is actually such a generic message
    It's just a suggestion, but answering in such detail actually tells us you are serious about resolving the issue - you put in effort, and that may convince us to return some effort.

  • Start up problem with Oracle RAC 11g

    Hi all,
    After a power failure I can not start a oracle database it give me the ORA-01031: insufficient privileges error
    [oracle@hostname ~]$ sqlplus /nolog
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Jul 23 19:06:41 2013
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    SQL> show sga
    Total System Global Area  283930624 bytes
    Fixed Size            2212656 bytes
    Variable Size          256552144 bytes
    ASM Cache           25165824 bytes
    SQL> disconnect
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Real Application Clusters and Automatic Storage Management options
    SQL> connect as sysdba
    Enter user-name: system
    Enter password:
    Connected.
    SQL> startup
    ORA-01031: insufficient privileges
    SQL> quit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Real Application Clusters and Automatic Storage Management options
    [oracle@hostname ~]$ lsb_release -a
    LSB Version:    :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch
    Distributor ID:    EnterpriseEnterpriseServer
    Description:    Enterprise Linux Enterprise Linux Server release 5.7 (Carthage)
    Release:    5.7
    Codename:    Carthage
    [oracle@hostname ~]$
    [oracle@hostname ~]$ crs_stat -t
    Name           Type           Target    State     Host       
    ora.DATA.dg    ora....up.type ONLINE    ONLINE    sil-rac1   
    ora....ER.lsnr ora....er.type ONLINE    ONLINE    sil-rac1   
    ora....N1.lsnr ora....er.type ONLINE    ONLINE    sil-rac2   
    ora....N2.lsnr ora....er.type ONLINE    ONLINE    sil-rac1   
    ora....N3.lsnr ora....er.type ONLINE    ONLINE    sil-rac1   
    ora.asm        ora.asm.type   ONLINE    ONLINE    sil-rac1   
    ora.eons       ora.eons.type  ONLINE    ONLINE    sil-rac1   
    ora.gsd        ora.gsd.type   OFFLINE   OFFLINE              
    ora....network ora....rk.type ONLINE    ONLINE    sil-rac1   
    ora.oc4j       ora.oc4j.type  ONLINE    ONLINE    sil-rac2   
    ora.ons        ora.ons.type   ONLINE    ONLINE    sil-rac1   
    ora.orcl.db    ora....se.type ONLINE    ONLINE    sil-rac1   
    ora.scan1.vip  ora....ip.type ONLINE    ONLINE    sil-rac2   
    ora.scan2.vip  ora....ip.type ONLINE    ONLINE    sil-rac1   
    ora.scan3.vip  ora....ip.type ONLINE    ONLINE    sil-rac1   
    ora....SM1.asm application    ONLINE    ONLINE    sil-rac1   
    ora....C1.lsnr application    ONLINE    ONLINE    sil-rac1   
    ora....ac1.gsd application    OFFLINE   OFFLINE              
    ora....ac1.ons application    ONLINE    ONLINE    sil-rac1   
    ora....ac1.vip ora....t1.type ONLINE    ONLINE    sil-rac1   
    ora....SM2.asm application    ONLINE    ONLINE    sil-rac2   
    ora....C2.lsnr application    ONLINE    ONLINE    sil-rac2   
    ora....ac2.gsd application    OFFLINE   OFFLINE              
    ora....ac2.ons application    ONLINE    ONLINE    sil-rac2   
    ora....ac2.vip ora....t1.type ONLINE    ONLINE    sil-rac2   
    [oracle@hostname ~]$
    [oracle@hostname ~]$ crsctl check crs
    CRS-4638: Oracle High Availability Services is online
    CRS-4537: Cluster Ready Services is online
    CRS-4529: Cluster Synchronization Services is online
    CRS-4533: Event Manager is online
    [oracle@hostname ~]$
    Does anyone know what can be the problem?
    Thanks,
    Andre Gil

    Thanks for your answer
    The OS user I'm log is ORACLE that own the filesystem, Before you ask ORACLE is part of OINSTALL and DBA group
    Any other suggestion
    [oracle@sil-rac1 ~]$ id
    uid=1100(oracle) gid=1200(dba) groups=4(adm),100(users),1000(oinstall),1200(dba)
    [oracle@sil-rac1 ~]$ env | sort
    BASE_PATH=/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin
    _=/bin/env
    CLASSPATH=/u01/app/11.2.0/grid/JRE:/u01/app/11.2.0/grid/jlib:/u01/app/11.2.0/grid/rdbms/jlib
    DB_HOME=/u01/app/oracle/product/11.2.0/db_1
    G_BROKEN_FILENAMES=1
    GRID_HOME=/u01/app/11.2.0/grid
    HISTSIZE=1000
    HOME=/home/oracle
    HOSTNAME=sil-rac1
    INPUTRC=/etc/inputrc
    LANG=en_US.UTF-8
    LD_LIBRARY_PATH=/u01/app/11.2.0/grid/lib:/lib:/usr/lib
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    LOGNAME=oracle
    LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
    MAIL=/var/spool/mail/oracle
    ORACLE_BASE=/u01/app/oracle
    ORACLE_HOME=/u01/app/11.2.0/grid
    ORACLE_HOSTNAME=sil-rac1.silanis.com
    ORACLE_SID=+ASM1
    ORACLE_TERM=xterm
    ORACLE_UNQNAME=RAC
    PATH=/u01/app/11.2.0/grid/bin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin
    PWD=/home/oracle
    SHELL=/bin/bash
    SHLVL=1
    SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
    TERM=xterm
    TMPDIR=/tmp
    TMP=/tmp
    USER=oracle
    [oracle@sil-rac1 ~]$

  • Error in installing Oracle client 11g on Windows 2008 R2 (64bit) XenApp 6

    I am trying to install "win64_11gR2_client.zip" Oracle 11g Client 64bit on Windows 2008 R2 that has been clamped and restricted by our security department. Details of the clamp:
    http://support.microsoft.com/kb/885409
    The Windows 2008 R2 server is running on CITRIX XenApp 6.
    When we try to install the client on a normal version of Windows 2008 R2 without the Clamp, the installation follows through and successfully. However, when we try to install the 11g Client on the Clamped Windows 2008 R2, we get the error below:
    [INS-08802] Unable to instantiate the View class referred by View ID 'SummaryUI'
    This indicates the primary issue is with the clamp. My issue now is knowing what exactly is causing the error. what restrictions should I enable from the clamp in order to get the installation working?
    Here is the error log:
    Error log:
    INFO: Loading data from: jar:file:/C:/Users/setupc/AppData/Local/Temp/OraInstall2011-10-10_04-13-35PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Loading beanstore from jar:file:/C:/Users/setupc/AppData/Local/Temp/OraInstall2011-10-10_04-13-35PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Restoring class oracle.install.driver.oui.ConfigCmdMappings from jar:file:/C:/Users/setupc/AppData/Local/Temp/OraInstall2011-10-10_04-13-35PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Verifying target environment...
    INFO: Checking whether the IP address of the localhost could be determined...
    INFO: Completed verification of target environment.
    INFO: Inventory exists: false
    INFO: Registering setup bean
    INFO: Building Flow
    INFO: Building the flow graph
    INFO: Loaded state init
    INFO: Loaded state clientInstallType
    INFO: Loaded state productLanguage
    INFO: Loaded state getOracleHome
    INFO: Loaded state prereqExecutionDecider
    INFO: Loaded state checkPrereqs
    INFO: Loaded state postPrereqs
    INFO: Loaded state summary
    INFO: Loaded state clientCustomInstall
    INFO: Loaded state schedulerAgent
    INFO: Loaded state mtsDialog
    INFO: Loaded state setup
    INFO: Loaded state finish
    INFO: Linking states
    INFO: State[checkPrereqs]: route=success; to=summary
    INFO: State[clientCustomInstall]: route=TO_ENDCUSTOM; to=prereqExecutionDecider
    INFO: State[clientCustomInstall]: route=TO_ORAMTS; to=mtsDialog
    INFO: State[clientCustomInstall]: route=TO_SCHEDULERAGENT; to=schedulerAgent
    INFO: State[clientInstallType]: route=ic_no; to=productLanguage
    INFO: State[clientInstallType]: route=ic_yes; to=getOracleHome
    INFO: State[getOracleHome]: route=INVENTORY_NO; to=prereqExecutionDecider
    INFO: State[getOracleHome]: route=INVENTORY_NO_CUSTOM_YES; to=clientCustomInstall
    INFO: State[getOracleHome]: route=INVENTORY_YES; to=prereqExecutionDecider
    INFO: State[getOracleHome]: route=INVENTORY_YES_CUSTOM_YES; to=clientCustomInstall
    INFO: State[init]: route=success; to=clientInstallType
    INFO: State[mtsDialog]: route=success; to=prereqExecutionDecider
    INFO: State[postPrereqs]: route=CUSTOM; to=clientCustomInstall
    INFO: State[postPrereqs]: route=NON_CUSTOM; to=summary
    INFO: State[prereqExecutionDecider]: route=executeprereqs; to=checkPrereqs
    INFO: State[prereqExecutionDecider]: route=ignoreprereqs; to=summary
    INFO: State[productLanguage]: route=productlanguage_yes; to=getOracleHome
    INFO: State[schedulerAgent]: route=TO_ENDCUSTOM; to=prereqExecutionDecider
    INFO: State[schedulerAgent]: route=TO_ORAMTS; to=mtsDialog
    INFO: State[setup]: route=success; to=finish
    INFO: State[summary]: route=success; to=setup
    INFO: Successfully built the flow
    INFO: Opening bean stores from which the beans can be loaded
    INFO: Loading beanstore from a given input stream
    INFO: Translating external format into raw format
    INFO: Registering the flow data beans
    INFO: [INS-07001] Value for property 'INSTALL_TYPE' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_WindowsSystemDirectory' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_LaunchNetCA' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_NoMigration' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_RACInstall' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_ConfigurationType' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_InstallType' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_InstallEdition' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_CustomComponents' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_OraMTSPortNumber' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_SchedulerAgentHostName' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_SchedulerAgentPortNumber' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_HOME' not found in the bean store.
    INFO: [INS-07001] Value for property 'FROM_LOCATION' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_BASE' not found in the bean store.
    INFO: [INS-07001] Value for property 'TOPLEVEL_COMPONENT' not found in the bean store.
    INFO: [INS-07001] Value for property 'TopLevelComponentVersion' not found in the bean store.
    INFO: [INS-07001] Value for property 'UNIX_GROUP_NAME' not found in the bean store.
    INFO: [INS-07001] Value for property 'INVENTORY_LOCATION' not found in the bean store.
    INFO: [INS-07001] Value for property 'SELECTED_LANGUAGES' not found in the bean store.
    INFO: [INS-07001] Value for property 'COLLECTOR_RESPONSE_FILE' not found in the bean store.
    INFO: [INS-07001] Value for property 'MYORACLESUPPORT_USERNAME' not found in the bean store.
    INFO: [INS-07001] Value for property 'MYORACLESUPPORT_PASSWORD' not found in the bean store.
    INFO: [INS-07001] Value for property 'DECLINE_SECURITY_UPDATES' not found in the bean store.
    INFO: [INS-07001] Value for property 'PROXY_HOST' not found in the bean store.
    INFO: [INS-07001] Value for property 'PROXY_PORT' not found in the bean store.
    INFO: [INS-07001] Value for property 'PROXY_USER' not found in the bean store.
    INFO: [INS-07001] Value for property 'PROXY_PWD' not found in the bean store.
    INFO: [INS-07001] Value for property 'SECURITY_UPDATES_VIA_MYORACLESUPPORT' not found in the bean store.
    INFO: [INS-07001] Value for property 'COLLECTOR_IGNORE_FAILURES' not found in the bean store.
    INFO: [INS-07001] Value for property 'COLLECTOR_IGNORE_CONFIGURATION' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_HOSTNAME' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_WindowsSystemDirectory' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_LaunchNetCA' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_NoMigration' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_RACInstall' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_db_ConfigurationType' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_db_InstallType' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_db_InstallEdition' not found in the bean store.
    WARNING: [INS-07001] Value for property 'FROM_LOCATION' not found in the bean store.
    WARNING: [INS-07001] Value for property 'TOPLEVEL_COMPONENT' not found in the bean store.
    WARNING: [INS-07001] Value for property 'TopLevelComponentVersion' not found in the bean store.
    WARNING: [INS-07001] Value for property 'OCMSettings' not found in the bean store.
    INFO: Set value for bean ClientSetupBean
    INFO: [INS-07001] Value for property 'INSTALL_TYPE' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_WindowsSystemDirectory' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_LaunchNetCA' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_NoMigration' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_RACInstall' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_ConfigurationType' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_InstallType' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_InstallEdition' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_CustomComponents' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_OraMTSPortNumber' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_SchedulerAgentHostName' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_SchedulerAgentPortNumber' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_HOME' not found in the bean store.
    INFO: [INS-07001] Value for property 'FROM_LOCATION' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_BASE' not found in the bean store.
    INFO: [INS-07001] Value for property 'TOPLEVEL_COMPONENT' not found in the bean store.
    INFO: [INS-07001] Value for property 'TopLevelComponentVersion' not found in the bean store.
    WARNING: Failed to load bean oracle.install.ivw.client.bean.ClientInstallSettings. Reason: [INS-07001] Value for property 'ClientInstallSettings' not found in the bean store.
    INFO: Closing bean stores from which the beans can be loaded
    INFO: Registering the flow views
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.PrereqGUI viewId: null uiType: null]
    INFO: oracle.install.commons.base.interview.common.view.PrereqGUI added to View Type Registry with the key as [PrereqUI]
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.SummaryGUI viewId: null uiType: null]
    INFO: oracle.install.commons.base.interview.common.view.SummaryGUI added to View Type Registry with the key as [SummaryUI]
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.SetupGUI viewId: null uiType: null]
    INFO: oracle.install.commons.base.interview.common.view.SetupGUI added to View Type Registry with the key as [SetupUI]
    INFO: Adding View[type: oracle.install.ivw.common.view.ProductLanguageGUI viewId: ProductLanguageUI uiType: null]
    INFO: oracle.install.ivw.common.view.ProductLanguageGUI added to View Type Registry with the key as [ProductLanguageUI]
    INFO: Adding View[type: oracle.install.ivw.client.view.CustomInstallGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.client.view.CustomInstallGUI added to View Type Registry with the key as [CustomInstallUI]
    INFO: Adding View[type: oracle.install.ivw.client.view.SchedulerAgentGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.client.view.SchedulerAgentGUI added to View Type Registry with the key as [SchedulerAgentUI]
    INFO: Adding View[type: oracle.install.ivw.client.view.OraMTSGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.client.view.OraMTSGUI added to View Type Registry with the key as [OraMTSUI]
    INFO: Adding View[type: oracle.install.ivw.client.view.InstallLocationGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.client.view.InstallLocationGUI added to View Type Registry with the key as [InstallLocationUI]
    INFO: Adding View[type: oracle.install.ivw.client.view.InstallTypesGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.client.view.InstallTypesGUI added to View Type Registry with the key as [InstallTypesUI]
    INFO: Adding View[type: oracle.install.ivw.client.view.FinishGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.client.view.FinishGUI added to View Type Registry with the key as [FinishUI]
    INFO: Initial values of Setup Properties :
    PROPERTY VALUE
    COLLECTOR_IGNORE_CONFIGURATION false
    COLLECTOR_IGNORE_FAILURES false
    COLLECTOR_RESPONSE_FILE
    DECLINE_SECURITY_UPDATES false
    FROM_LOCATION C:\Dev Citrix Tools\Oracle Tools\Oracle 11g client Releas
    e 2\client\install\../stage/products.xml
    INSTALL_TYPE InstantClient
    MYORACLESUPPORT_PASSWORD Protected value, not to be logged
    MYORACLESUPPORT_USERNAME
    ORACLE_BASE
    ORACLE_HOME
    ORACLE_HOSTNAME mndwg068cs.rad.afpaa.r.mil.uk
    PROXY_HOST
    PROXY_PORT
    PROXY_PWD Protected value, not to be logged
    PROXY_USER
    SECURITY_UPDATES_VIA_MYORACLESUPPORT true
    SELECTED_LANGUAGES {"en","en_GB"}
    oracle_install_LaunchNetCA false
    oracle_install_NoMigration true
    oracle_install_RACInstall false
    oracle_install_WindowsSystemDirectory
    oracle_install_client_OraMTSPortNumber 49155
    oracle_install_db_ConfigurationType
    oracle_install_db_InstallEdition EE
    oracle_install_db_InstallType
    INFO: Launching Oracle Client Installer
    INFO: Started executing the flow in INTERACTIVE mode
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state init
    INFO: Waiting for completion all forked tasks at state init
    INFO: All forked task are completed at state init
    INFO: Completed background operations
    INFO: Executing action at state init
    INFO: Completed executing action at state <init>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <init>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <init>
    INFO: Completed validating view at state <init>
    INFO: Validating state <init>
    WARNING: Validation disabled for the state init
    INFO: Completed validating state <init>
    INFO: Verifying route success
    INFO: Get view named [InstallTypesUI]
    INFO: size estimation for InstantClientinstall is 199.0705451965332
    INFO: size estimation for Administratorinstall is 1068.0003070831299
    INFO: size estimation for Runtimeinstall is 751.6538038253784
    INFO: View for [InstallTypesUI] is oracle.install.ivw.client.view.InstallTypesGUI@2398dc19
    INFO: Initializing view <InstallTypesUI> at state <clientInstallType>
    INFO: InstallTypesPane installType is: InstantClient
    INFO: Completed initializing view <InstallTypesUI> at state <clientInstallType>
    INFO: Displaying view <InstallTypesUI> at state <clientInstallType>
    INFO: Completed displaying view <InstallTypesUI> at state <clientInstallType>
    INFO: Loading view <InstallTypesUI> at state <clientInstallType>
    INFO: Completed loading view <InstallTypesUI> at state <clientInstallType>
    INFO: Localizing view <InstallTypesUI> at state <clientInstallType>
    INFO: size estimation for InstantClientinstall is 199.0705451965332
    INFO: size estimation for Administratorinstall is 1068.0003070831299
    INFO: size estimation for Runtimeinstall is 751.6538038253784
    INFO: Completed localizing view <InstallTypesUI> at state <clientInstallType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state clientInstallType
    INFO: Completed executing action at state <clientInstallType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <clientInstallType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Client Install Type set in InstallTypeUI is : Runtime
    INFO: Validating view at state <clientInstallType>
    INFO: Completed validating view at state <clientInstallType>
    INFO: Validating state <clientInstallType>
    WARNING: Validation disabled for the state clientInstallType
    INFO: Completed validating state <clientInstallType>
    INFO: In Transition of InstallTypesAction:
    INFO: Verifying route ic_no
    INFO: Get view named [ProductLanguageUI]
    INFO: View for [ProductLanguageUI] is oracle.install.ivw.common.view.ProductLanguageGUI@1875a340
    INFO: Initializing view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed initializing view <ProductLanguageUI> at state <productLanguage>
    INFO: Displaying view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed displaying view <ProductLanguageUI> at state <productLanguage>
    INFO: Loading view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed loading view <ProductLanguageUI> at state <productLanguage>
    INFO: Localizing view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed localizing view <ProductLanguageUI> at state <productLanguage>
    INFO: Fetching Available Languages...
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state productLanguage
    INFO: Waiting for completion all forked tasks at state productLanguage
    INFO: All forked task are completed at state productLanguage
    INFO: Completed background operations
    INFO: Executing action at state productLanguage
    INFO: Completed executing action at state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: The languages in which the product will be installed are [en, en_GB]
    INFO: Validating view at state <productLanguage>
    INFO: Completed validating view at state <productLanguage>
    INFO: Validating state <productLanguage>
    INFO: Using default Validator configured in the Action class oracle.install.ivw.common.action.ProductLanguageAction
    INFO: Completed validating state <productLanguage>
    INFO: Verifying route productlanguage_yes
    INFO: Get view named [InstallLocationUI]
    WARNING: Active Help Content for InstallLocationPane.cbxOracleBases do not exist. Error :Can't find resource for bundle oracle.install.ivw.client.resource.ContextualHelpResource, key InstallLocationPane.cbxOracleBases.conciseHelpText
    WARNING: Active Help Content for InstallLocationPane.cbxSoftwareLoc do not exist. Error :Can't find resource for bundle oracle.install.ivw.client.resource.ContextualHelpResource, key InstallLocationPane.cbxSoftwareLoc.conciseHelpText
    INFO: View for [InstallLocationUI] is oracle.install.ivw.client.view.InstallLocationGUI@15837e8
    INFO: Initializing view <InstallLocationUI> at state <getOracleHome>
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: Completed initializing view <InstallLocationUI> at state <getOracleHome>
    INFO: Displaying view <InstallLocationUI> at state <getOracleHome>
    INFO: Completed displaying view <InstallLocationUI> at state <getOracleHome>
    INFO: Loading view <InstallLocationUI> at state <getOracleHome>
    INFO: Completed loading view <InstallLocationUI> at state <getOracleHome>
    INFO: Localizing view <InstallLocationUI> at state <getOracleHome>
    INFO: Completed localizing view <InstallLocationUI> at state <getOracleHome>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state getOracleHome
    INFO: Completed executing action at state <getOracleHome>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <getOracleHome>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <getOracleHome>
    INFO: Completed validating view at state <getOracleHome>
    INFO: Validating state <getOracleHome>
    INFO: custom prereq file name: oracle.client_Runtime.xml
    INFO: refDataFile: C:\Dev Citrix Tools\Oracle Tools\Oracle 11g client Release 2\client\stage\cvu\oracle.client_Runtime.xml
    INFO: isCustomRefDataFilePresent: false
    INFO: InstallAreaControl exists: false
    INFO: Checking:NEW_HOME
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:ORCA_HOME
    INFO: Reading shiphome metadata from C:\Dev Citrix Tools\Oracle Tools\Oracle 11g client Release 2\client\install\..\stage\shiphomeproperties.xml
    INFO: Loading beanstore from file:/C:/Dev Citrix Tools/Oracle Tools/Oracle 11g client Release 2/client/install/../stage/shiphomeproperties.xml
    INFO: Translating external format into raw format
    INFO: Restoring class oracle.install.driver.oui.ShiphomeMetadata from file:/C:/Dev Citrix Tools/Oracle Tools/Oracle 11g client Release 2/client/install/../stage/shiphomeproperties.xml
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: size estimation for Runtimeinstall is 751.6538038253784
    INFO: PATH has :==>C:\Users\setupc\AppData\Local\Temp\OraInstall2011-10-10_04-13-35PM\jdk\jre\bin;.;C:\Windows\system32;C:\Windows;D:\ORADEV10g\jdk\jre\bin\classic;D:\ORADEV10g\jdk\jre\bin;D:\ORADEV10g\jdk\jre\bin\client;D:\ORADEV10g\jlib;D:\ORADEV10g\bin;D:\ORADEV10g\jre\1.4.2\bin\client;D:\ORADEV10g\jre\1.4.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\CA\SharedComponents\ScanEngine;C:\Program Files\CA\SharedComponents\CAUpdate\;C:\Program Files\CA\SharedComponents\ThirdParty\;C:\Program Files\CA\SharedComponents\SubscriptionLicense\;C:\Program Files\CA\eTrustITM;C:\Program Files (x86)\Citrix\system32\;C:\Program Files (x86)\Citrix\System32\Citrix\IMA;C:\Program Files (x86)\Citrix\System32\Citrix\IMA\Subsystems;C:\Windows\System32\Citrix\IMA;C:\Program Files (x86)\Citrix\system32;C:\Program Files (x86)\Common Files\Citrix\System32\
    INFO: Completed validating state <getOracleHome>
    INFO: InstallLocationAction to INVENTORY_NO
    INFO: Verifying route INVENTORY_NO
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state prereqExecutionDecider
    INFO: Completed executing action at state <prereqExecutionDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <prereqExecutionDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <prereqExecutionDecider>
    INFO: Completed validating view at state <prereqExecutionDecider>
    INFO: Validating state <prereqExecutionDecider>
    WARNING: Validation disabled for the state prereqExecutionDecider
    INFO: Completed validating state <prereqExecutionDecider>
    INFO: Verifying route executeprereqs
    INFO: Get view named [PrereqUI]
    INFO: View for [PrereqUI] is [email protected]2ac
    INFO: Initializing view <PrereqUI> at state <checkPrereqs>
    INFO: Completed initializing view <PrereqUI> at state <checkPrereqs>
    INFO: Displaying view <PrereqUI> at state <checkPrereqs>
    INFO: Completed displaying view <PrereqUI> at state <checkPrereqs>
    INFO: Loading view <PrereqUI> at state <checkPrereqs>
    INFO: Completed loading view <PrereqUI> at state <checkPrereqs>
    INFO: Localizing view <PrereqUI> at state <checkPrereqs>
    INFO: Completed localizing view <PrereqUI> at state <checkPrereqs>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state checkPrereqs
    INFO: custom prereq file name: oracle.client_Runtime.xml
    INFO: refDataFile: C:\Dev Citrix Tools\Oracle Tools\Oracle 11g client Release 2\client\stage\cvu\oracle.client_Runtime.xml
    INFO: isCustomRefDataFilePresent: false
    INFO: Completed executing action at state <checkPrereqs>
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state checkPrereqs
    INFO: Waiting for completion all forked tasks at state checkPrereqs
    INFO: Creating PrereqChecker Job for leaf task Physical Memory
    INFO: Creating CompositePrereqChecker Job for container task Free Space
    INFO: Creating PrereqChecker Job for leaf task Free Space: mndwg068cs:C:\Users\setupc\AppData\Local\Temp
    INFO: Creating PrereqChecker Job for leaf task Architecture
    INFO: Creating PrereqChecker Job for leaf task Environment variable: "PATH"
    INFO: CVU tracingEnabled = false
    INFO: Nodes are prepared for verification.
    INFO: *********************************************
    INFO: Physical Memory: This is a prerequisite condition to test whether the system has at least 128MB (131072.0KB) of total physical memory.
    INFO: Severity:IGNORABLE
    INFO: OverallStatus:SUCCESSFUL
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:mndwg068cs
    INFO: Expected Value:128MB (131072.0KB)
    INFO: Actual Value:3.9996GB (4193848.0KB)
    INFO: -----------------------------------------------
    INFO: *********************************************
    INFO: Free Space: mndwg068cs:C:\Users\setupc\AppData\Local\Temp: This is a prerequisite condition to test whether sufficient free space is available in the file system.
    INFO: Severity:IGNORABLE
    INFO: OverallStatus:SUCCESSFUL
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:mndwg068cs
    INFO: Expected Value:130MB
    INFO: Actual Value:26.0185GB
    INFO: -----------------------------------------------
    INFO: *********************************************
    INFO: Architecture: This is a prerequisite condition to test whether the system has a certified architecture.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:SUCCESSFUL
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:mndwg068cs
    INFO: Expected Value:64-bit
    INFO: Actual Value:64-bit
    INFO: -----------------------------------------------
    INFO: *********************************************
    INFO: Environment variable: "PATH": This test checks whether the length of the environment variable "PATH" does not exceed the recommended length.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:SUCCESSFUL
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:mndwg068cs
    INFO: Expected Value:1023
    INFO: Actual Value:791
    INFO: -----------------------------------------------
    INFO: All forked task are completed at state checkPrereqs
    INFO: Completed background operations
    INFO: Moved to state <checkPrereqs>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <checkPrereqs>
    INFO: Completed validating view at state <checkPrereqs>
    INFO: Validating state <checkPrereqs>
    INFO: Using default Validator configured in the Action class oracle.install.ivw.client.action.PrereqAction
    INFO: Completed validating state <checkPrereqs>
    INFO: Verifying route success
    INFO: Get view named [SummaryUI]
    WARNING: Failed to load the view [SummaryUI] . Reason: .
    Refer associated stacktrace #oracle.install.commons.flow.ViewManager:367
    INFO: Terminating all background operations
    INFO: Terminated all background operations
    SEVERE: [FATAL] [INS-08802] Unable to instantiate the View class referred by View ID 'SummaryUI'.
    CAUSE: The given class do not represent a valid View class or an unexpected error occured while instantiating it.
    ACTION: No additional information available.
    SUMMARY:
    - java.lang.NullPointerException.
    Refer associated stacktrace #oracle.install.commons.util.exception.DefaultErrorAdvisor:370
    INFO: Advice is ABORT
    SEVERE: Unconditional Exit
    INFO: Adding ExitStatus FAILURE to the exit status set
    INFO: Finding the most appropriate exit status for the current application
    INFO: Exit Status is -1
    INFO: Shutdown Oracle Client Installer
    INFO: Unloading Setup Driver

    Hi;
    Please see below note than Please see:
    Master Note For Oracle Database Client Installation [ID 1157463.1]
    *+<Moderator edit - MOS Doc content deleted - pl do not post contents of MOS Docs>+*
    If notes not help than i suggest rise SR
    Regard
    Helios

  • Oracle Client 11G R2

    Application Name: Oracle Client
    Application Version: 11G R2
    Company Name: Oracle
    Sequencer Version: 4.6
    App-V Client Version Tested On: 4.6
    Operating System Sequenced On: Server 2003 R2 SP2
    Pre-requisites: None
    Client Operating Systems Successfully Deployed To: Server 2003 R2 SP2 (x86), Server 2008 (x86), Server 2008 R2.
    Posted by non-Microsoft Employee: Kevin Kaminski, Big Hat Group Inc.
    Steps to Sequence the Application:
    Before sequencing you may want a dummy user and system ODBC DNS in place so that the sequence can see other DSNs at the machine level.
    Launch setup.exe.
    Make sure InstantClient is selected and click Next.
    Change the installation folder to Q:\Oracle11.001.
    Ignore PATH error.
    Select Finish.
    Click Close.
    Most environments provide a TNSNAMES.ORA and SQLNET.ORA files that are customized for the customers environment. It is a good idea to keep these files outside of the sequence to make them easier to update especially if you are going to use multiple sequences with the Oracle client. Make a folder off of the root of C:\ and put the files in there and set the environment variable  based on the example below.
    TNS_ADMIN=c:\OracleTNS
    Create necessary ODBC DSNs.
    Known Issues/Limitations: Oracle is working on a client to be supported on Windows 7 and Server 2008 R2. A release is expected in July 2010.                                  
    Approximate Sequencing Time: 30 minutes
    Other (Optional fields)
    App-V friendly copy protection scheme?  N/A
    Additional Notes/Links: N/A
    Custom scripts to assist in the process: Can use pre launch script to update TNSNAMES.ORA and SQLNET.ORA if it is inside of the sequence.
    www.bighatgroup.com

    Hello,
    I need
    your help.
    I
    virtualized Oracle
    11g,
    but
    as I
    test, both
    IconeNetManager
    and Wallet
    Manager
    does not launch.
    Cordially
    Please ask support questions in this forum:
    http://social.technet.microsoft.com/Forums/en-GB/appvgeneralsequencing/threadsThis forum post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Using Oracle 10.1.0 client to connect Oracle 10.2.0 server

    Hi
    Oracle client is 10.1.0v installed in host A and Oracle server is 10.2.0v running at host B. Is there any documentation on what would be behaviour of Oracle server/client on above case?
    Will there be any problem?
    Please let me know info of those problem (if any).
    One of my customer having problem in same case it is core dumping and core stack trace says:
    #0 0xc32139f4 in noshlibs+0 () from /opt/oracle/product/10.1.0/lib32/libclntsh.sl.10.1
    #1 0xc38af63c in ttcdrv+0xa50 () from /opt/oracle/product/10.1.0/lib32/libclntsh.sl.10.1
    #2 0xc38aeadc in sendpath+0x3c () from /opt/oracle/product/10.1.0/lib32/libclntsh.sl.10.1
    #3 0xc36b6e34 in sendpath+0x3c () from /opt/oracle/product/10.1.0/lib32/libclntsh.sl.10.1
    Thanks
    Ram

    Your only option would be to install an earlier version of the Oracle client. You'd have to look up the compatibility matrix on Metalink to see how far back you'd have to go, but I believe that you'd need to go back to 9.0.1 or earlier.
    Justin

  • Low Performance with Oracle Client 11g R2

    Hi Experts
    I installed Crystal Report Server 2008 on Windows Server 2003. We use Oracle Client 11R2 to create an ODBC to link with an Oracle Database which installed on another Redhat Linux Server.
    I found the performance of generating report by Crystal is really bad, it's a really simple SQL query.
    Before the Oracle, we used the SQL Server 2005 as the database, the time to open the same report only took 1-3 seconds, but on Oracle it took more than 20 seconds.
    Please help~~ thank you.

    Hi Don
    Thank you for your reply, I built a report by myself, it's really fast, so I think it's not the problem of ODBC.
    I double checked the 'Query SQL' of the old report, it only took 3 tables and generate a SQL like hereafter,
    then I checked this SQL on "SQL Developer", it's working fine, very fast.
    I don't know why Crystal Report Server take so long time to generate this report.
    ODBC
    SELECT
    a.CR01_NATURAL_PER_FLAG taxpayer_category,
    CASE WHEN a.CR01_NATURAL_PER_FLAG='Y' THEN to_char(to_number(a.cr04_natural_per_id)) else to_char(to_number(a.cr10_legal_per_id)) END per_id,
    to_char( to_number(a.cr01_internal_id)) cr01_internal_id,
    nvl(a.CR01_TIN_ID,'') cr01_tin_id,
    a.CSTD_TAXPAYER_STATUS,
    a.CSTD_SECURITY_LEVEL_ID,
    a.CSTD_CERTIFICATE_STATUS,
    a.CR01_MISS_INFO,
    a.CR01_ACT_START_DATE,
    B.CSTD_TAXPAYER_TYPE,
    d.CS04_ID,
    f.CSTD_ACTIVITY_CODE
    FROM tr01_taxpayer A,TR14_TAXPAYER_ACTIVE_TYPE B, TR16_TAXPAYER_OFFICE d,TR06_BRANCH_BUSINESS_ACTIVITY f
    WHERE a.cr01_internal_id = d.cr01_internal_id
    AND nvl(d.cr16_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=sysdate
    and nvl(d.cr16_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>= sysdate
    AND A.cr01_internal_id = B.cr01_internal_id
    and nvl(B.cr14_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=sysdate
    and nvl(B.cr14_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=sysdate
    and a.cr01_internal_id = f.cr01_internal_id
    and f.CR03_BRANCH_CODE = '000'
    and nvl(f.cr06_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=sysdate
    and nvl(f.cr06_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=sysdate
    and f.CR06_PRIMARY_FLAG='Y'
    EXTERNAL JOIN TAXPAYER.TAXPAYER_CATEGORY={?ODBC: NAME.TAXPAYER_CATEGORY} AND TAXPAYER.PER_ID={?ODBC: NAME.PER_ID} AND TAXPAYER.CR01_INTERNAL_ID={?ODBC: INTERNALID.CR01_INTERNAL_ID}
    ODBC
    select 'Y' taxpayer_category,to_char(to_number(a.cr04_natural_per_id)) per_id,
    cr11_first_name||' '||cr11_second_name||' '||cr11_third_name||' '||cr11_last_name NAME
    FROM
    tr01_taxpayer A, TR11_NATURAL_PER_NAME B
    WHERE cr01_natural_per_flag = 'Y'
    and A.cr04_natural_per_id=B.cr04_natural_per_id
    and nvl(b.cr11_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=sysdate
    and nvl(b.cr11_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=sysdate
    union
    select 'N' taxpayer_category,to_char(to_number(a.cr10_legal_per_id)) per_id,
    cr13_name NAME
    FROM
    tr01_taxpayer A, TR13_LEGAL_PER_NAME C
    WHERE cr01_natural_per_flag = 'N' and A.cr10_legal_per_id = C.cr10_legal_per_id
    and nvl(c.cr13_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=sysdate
    and nvl(c.cr13_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=sysdate
    EXTERNAL JOIN NAME.TAXPAYER_CATEGORY={?ODBC: TAXPAYER.TAXPAYER_CATEGORY} AND NAME.PER_ID={?ODBC: TAXPAYER.PER_ID}
    ODBC
    select distinct x.cr01_internal_id from
        (select to_char(to_number(cr01_internal_id)) cr01_internal_id from TR16_TAXPAYER_OFFICE where
        (nvl(cr16_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss')
        and nvl(cr16_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr16_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr16_start_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr16_end_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr16_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr16_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr16_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        AND to_char(cs04_id) = case when '{?p_taxoffice}' is null then to_char(cs04_id) else '{?p_taxoffice}' END
        ) x,
        (select to_char(to_number(cr01_internal_id)) cr01_internal_id from TR14_TAXPAYER_ACTIVE_TYPE where
        (nvl(cr14_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss')
        and nvl(cr14_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr14_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr14_start_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr14_end_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr14_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or(
        nvl(cr14_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr14_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        and cstd_taxpayer_type = case when '{?p_taxpayerType}' is null THEN cstd_taxpayer_type else '{?p_taxpayerType}' END
        ) y,
        (select cr01_internal_id from(
        select to_char(to_number(cr01_internal_id)) cr01_internal_id,'Y' taxpayer_category
        FROM
         tr01_taxpayer A, TR11_NATURAL_PER_NAME B
        WHERE cr01_natural_per_flag = 'Y'
        and A.cr04_natural_per_id=B.cr04_natural_per_id
        and
        (nvl(cr11_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss')
        and nvl(cr11_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr11_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr11_start_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr11_end_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr11_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or(
        nvl(cr11_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr11_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        and cr11_first_name||' '||cr11_second_name||' '||cr11_third_name||' '||cr11_last_name like
        case when '{?p_taxpayerName}' is null then cr11_first_name||' '||cr11_second_name||' '||cr11_third_name||' '||cr11_last_name  else '%{?p_taxpayerName}%' end
        union
        select to_char(to_number(cr01_internal_id)) cr01_internal_id,'N' taxpayer_category
        FROM
         tr01_taxpayer d, TR13_LEGAL_PER_NAME C
        WHERE cr01_natural_per_flag = 'N' and d.cr10_legal_per_id = C.cr10_legal_per_id
        and
        (nvl(cr13_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss')
        and nvl(cr13_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr13_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr13_start_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or
        (nvl(cr13_end_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr13_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        or(
        nvl(cr13_start_date,to_date('1950-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))<=to_date('2011-05-01 00:00:00','yyyy-mm-dd HH24:mi:ss') 
        and nvl(cr13_end_date,to_date('3000-01-01 00:00:00','yyyy-mm-dd HH24:mi:ss'))>=to_date('2011-05-31 00:00:00','yyyy-mm-dd HH24:mi:ss')
        and cr13_name like
        case when '{?p_taxpayerName}' is null then cr13_name else '%{?p_taxpayerName}%' end
        where taxpayer_category =
        case when '{?p_taxpayerCategory}' is null then taxpayer_category else '{?p_taxpayerCategory}' END
        ) z
    where x.cr01_internal_id=y.cr01_internal_id
    and x.cr01_internal_id=z.cr01_internal_id      
    EXTERNAL JOIN INTERNALID.CR01_INTERNAL_ID={?ODBC: TAXPAYER.CR01_INTERNAL_ID}
    Edited by: WangGang0411 on Jul 3, 2011 12:27 PM

Maybe you are looking for