A few of questions concerning the Oracle Client

Hi
Firstly, I'd just like to say that what I know about Oracle could be written on a very small postage stamp that had somehow been torn in half and then in half again.
Apologies for the waffle...
One of my roles within our organisation, is to create and deploy application using Novell ZENWorks to our users who will shortly be moving to a purely Windows XP SP2 environment.
Q1-Is the Oracle 8 client fully supported by XP SP2?
Our organisation runs multiple Oracle DB's and up until now, separate application objects have been created for each DB with that DB's settings in it's TNSNAMES.ORA file which is pushed out along with that application object. The trouble is that some users need to access more than one DB which means that they sometimes have multiple copies of the Oracle Client installed, using different TNSNAMES.ORA files depending on what DB they want to connect to.
Q2-Can I either carry out one install of say the Oracle 9 client and have one TNSNAMES.ORA file with all the DB settings in? Or even better still, can I install the client on one of the shared volumes on the server (I realise that I'd have to copy certain files to the workstation) and then get all the workstations to run the client from there?
Q3-Our preferred method of deploying applications is to use MSI's, but for some reason Oracle only supply some kind of primative and cumbersome response file system which I've found often gives random results depending on what the weather is like. Is there a better way of getting the client onto the workstations without having to mess around editing RSP's?
Sorry for posing such potentially dumb questions
James

Q1-Is the Oracle 8 client fully supported by XP SP2?AFAIK Oracle 8 products are no longer supported. Use 9i client instead.
Anyway here is link to certification matrix: http://www.oracle.com/technology/support/metalink/index.html
Or even better still, can I install the client on one of the shared volumes on the server...I guess this won't working. Install Client on each machine and share only tnsnames.ora, or you could resolving tnsnames from OID (LDAP) server.
Is there a better way of getting the client onto the workstations without having to mess around editing RSP's?You could make manual install and record the response file. That responsfile you could use on other machines. You don't need edit anything. Sorry, I can't see anything primitive and cumbersome on RSP. You can choose manual installation or using responsfile, there is not other option.

Similar Messages

  • How do we determine the version of the Oracle CLIENT software??

    I am sure someone in a large organization has had to deal with this...
    We have hundreds of machines in our environment and over the years have loaded the Oracle client software on many... So now I am looking at implementing the July set of Oracle Security patches and there are patches for the Client machines in this release...
    Looking at our list, we have machines with oracle 8, 9 and 10 (and almost every subversion known to Oracle) Clients out there... and of course each of these versions and sub-version use a different patch for windows...
    so the question is, is there a quick way of identify exactly what version of the software is loaded... preferably programmatically... Running SQL*Plus on each machine manually is probably not an option.
    We already have software that can scan each machine identify if a specific program is loaded and it's size and maybe pull the contents... (I know there is a $ORACLE_HOME/inventory/ContentsXML/comps.xml file in 10g that might tell us what we need to know, but I don't know if it goes back to 8/8i or not...)
    This would also help me plan a migration plan for some of these older clients also...
    Thanks.
    Michael

    This is a little late, but may be it will help someone else in the future.
    There may be an easier way, but this is what works for me.
    Log into ADI. Go to the Request Center. Click the ‘tool’ icon.
    It looks like a hammer and screwdriver.
    On the next screen, look in the bottom left corner.
    It will show the version of ADI.
    HTH,
    Mark

  • ASP to Oracle...without the Oracle client...

    Hi there. I work in a university setting, complete with politics and territorial departments. I am authoring some web pages using third party software for the content management (which uses SQL Server); the 3rd party software requires these pages use ASP. However, there is some data I need to pull off of an Oracle Database and integrate with the regular content.
    I have just begun to learn about my options for connecting to Oracle from ASP, and they all involve, if I understand correctly, installing the Oracle client software on the web server.
    The department that controls the web server (Win 2000 IIS) has balked on installing the client software. They want to keep the machine "clean".
    Is there a method for connecting to Oracle from ASP that does not involve installing the Oracle client on the web server? Maybe just a driver? Someone told me that I might be able to have the ASP page call a procedure on SQL server (which is not on the web server) which in turn connects to Oracle, pulls the data, then returns it to the ASP page. Sounds convoluted, but I guess if it works...
    The issue is not going away; we are pretty much tied to ASP for our web development and Oracle for our database needs. Can anyone give me some advice on what direction I should take? Do I have any options? (Besides stealing the web server away...)
    Thanks in advance...

    If I were in your position, I would simply explain that if you want to pull data from an Oracle database and use that data to create dynamic ASP web pages, you'll need the Oracle client on the web server. 99%+ of the world does it this way, it'll almost certainly cost more to develop and maintain a nonstandard setup than it will cost to "depurify" the web server with the Oracle client. Save lots of headaches down the road.
    Barring that, however, there are a few options technically available to you. I'll list them in my personal order of preference
    1) There are some third parties (DataDirect is one) that sell "thin" ODBC drivers which don't require the Oracle client to be installed. They speak the Oracle wire protocol. You can use this thin driver and the Microsoft OLE DB to ODBC translation layer to communicate with Oracle. These aren't particularly cheap products as I understand it, but you may be able to negotiate terms. You'll still have to install something on the web server, it'll just be a smaller something than the Oracle client.
    2) You could set up a SQL Server database on a separate machine (you could have SQL Server & Oracle on the same machine I suppose), install the Oracle client on that machine, and set SQL Server up to query from the Oracle database. Your ASP pages could query the SQL Server database on this machine, which would query Oracle and return the data. Not particlarly elegant, but doable. If you have to license the SQL Server install (i.e. you don't have a site license), this is probably more expensive & less elegant than #1.
    Side note: the reason you don't need to install "SQL Server client" software on the web server is that Microsoft has helpfully decided that SQL Server client components need to be a standard part of Windows.
    3) (Warning, speculative) The goal here is to use Oracle's thin JDBC driver (no Oracle client required) on the web server to query the Oracle database. I don't know if you could cobble together some database access components using Visual J++ called from ASP that called Oracle's thin JDBC driver. This strikes me as requiring a whole mess of bailing wire, duct tape, and chewing gum to hold together if it's possible, but has the benefit of not costing you money (just sanity, time, future maintenance...)
    So, it's technically possible to do what you wnat.
    I'd strongly advocate getting folks to understand the necessity of installing the Oracle client on their precious web server, no matter how pristine they think it is. If you're really backed into a corner, explain that you can go for option #1, but there will be a financial cost to doing so. Without knowing your precise requirements, I would tend to suspect that you won't be able to meet you project objectives with #2 & #3 both because they'll make development, design, and maintenance more difficult and because they'll involve more "moving parts" which will tend to make performance & reliability suffer. If this is a low-priority system that people won't rely on too heavily, you may be able to get away with it. Of course, if it's a low priority system, my guess is that you wouldn't have to time to develop it.
    Justin

  • Where do I find the Oracle Client installation for HPUX

    I thought I could install the Oracle Client on my HPUX Itanium server from these zipfiles:
    hpia64_11gR2_database_1of2.zip
    hpia64_11gR2_database_2of2.zip
    But, after unzipping them, I'm not locating "clientadmin.rsp" which I was expecting to find in the binary distribution.
    The only .rsp files I'm finding are these:
    ./database/response/dbca.rsp
    ./database/response/netca.rsp
    ./database/response/db_install.rsp
    Is the install media for Oracle Client going to found somewhere else? I'm having quite some difficulty locating it.
    Locating the "Instant Client" was easy, but that's not what we're trying to accomplish here. We want to run the "Administrator installation of Oracle Client".
    Any help is, of course, greatly appreciated.
    Thanks!
    ...Chuck...

    It seems that my concern is that I haven't got the correct binary (zip) files yet. After extracting BOTH files I'm left with the following, top-level structure:
    $ pwd
    /home/szpqw7/11gR2Client/database
    $ ll
    total 80
    drwxr-xr-x 12 root sys 8192 Dec 16 09:41 doc
    drwxr-xr-x 4 root sys 8192 Dec 16 09:41 install
    drwxr-xr-x 2 root sys 96 Dec 16 09:41 response
    drwxr-xr-x 2 root sys 96 Dec 16 09:41 rpm
    -rw-r--r-- 1 root sys 7046 Dec 16 09:41 runInstaller
    drwxr-xr-x 2 root sys 96 Dec 16 09:41 sshsetup
    drwxr-xr-x 14 root sys 8192 Dec 16 09:41 stage
    -rw-r--r-- 1 root sys 5386 Dec 16 09:41 welcome.html
    $
    As you can see, there is no "client" directory there. What binary should I be looking for that would contain the folder you are suggesting??

  • Error while executing SSIS Package after upgrading the Oracle Client

    Hello,
    I am running to the below error after we upgraded the Oracle client to 11g from 10g. The source of the Data is Oracle database . Looked online but each error is pointing towards different route, Confused here any help is very much appreciated. Have to say
    I am not a pro with SSIS.
    SSIS package "Bentek_ISO_Package (2).dtsx" starting.
    Information: 0x4004300A at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Validation phase is beginning.
    Information: 0x4004300A at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Validation phase is beginning.
    Warning: 0x80049304 at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Warning: Could not open global shared memory to communicate with performance DLL; data flow performance counters are not available.  To resolve, run this package as an administrator,
    or on the system's console.
    Information: 0x40043006 at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Prepare for Execute phase is beginning.
    Information: 0x40043007 at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Pre-Execute phase is beginning.
    Error: 0xC0202009 at Temp_tbl Injection Data Flow Task, OLE DB Source [1]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E14.
    An OLE DB record is available.  Source: "OraOLEDB"  Hresult: 0x80040E14  Description: "ORA-12801: error signaled in parallel query server P183, instance *****:qrmgmt2 (2)
    ORA-01861: literal does not match format string".
    An OLE DB record is available.  Source: "OraOLEDB"  Hresult: 0x80004005  Description: "ORA-12801: error signaled in parallel query server P183, instance ****:qrmgmt2 (2)
    ORA-01861: literal does not match format string".
    Error: 0xC004701A at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: component "OLE DB Source" (1) failed the pre-execute phase and returned error code 0xC0202009.
    Information: 0x4004300B at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: "component "OLE DB Destination" (52)" wrote 0 rows.
    Information: 0x40043009 at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Cleanup phase is beginning.
    Task failed: Temp_tbl Injection Data Flow Task
    Warning: 0x80019002 at *******: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution method succeeded, but the number of errors raised (2) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches
    the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors.
    SSIS package "****** (2).dtsx" finished: Failure.

    Do you have any Date conversion functions in your Oracle datetime fields? I did run into a similar issue when we upgraded the oracle client and the provider started to decipher the metadata of the date columns. The SSIS metadata conversion for the date
    columns yielded dates that were not valid. I had to update my queries to use the TO_CHAR conversion to bring it out as a string and then save it to the date field.
    TO_CHAR (DATE, 'MM/DD/YYYY HH24:MI:SS')
    Regards, Dinesh

  • How to upgrade the Oracle Client silently ?

    Hi all,
    I have to upgrade the Oracle Client from 8.1.6.0.0 to 9.2.0.1.0.
    I use the -record option for creating the destination file or edit the response file manually for being able to install the new client. But I have no idea, how to remove the old client.
    The following command doesn't work:
    C:\Program Files\Oracle\oui\install\setup.exe" -deinstall DEINSTALL_LIST={"oracle.client","8.1.6.0.0"}
    What am I doing wrong? How to remove the Oracle Client silently?
    Thanks for the help and best wishes from Frankfurt.
    Dimitri

    I created a instant client silent DE-INSTALL for version 10.1.0.2 on XP.
    setup.exe -silent -deinstall -responseFile Z:\yyyyyy\xxxxxx.rsp
    These are parameters are in my response file...
    ORACLE_HOME="C:\oracle\InstantClient\10.1.0"
    ORACLE_HOME_NAME="OraInstantClient10g_home1"
    TOPLEVEL_COMPONENT={"oracle.client","10.1.0.2.0"}
    DEINSTALL_LIST={"oracle.client","10.1.0.2.0"}
    SHOW_SPLASH_SCREEN=false
    SHOW_WELCOME_PAGE=false
    SHOW_END_SESSION_PAGE=false
    SHOW_EXIT_CONFIRMATION=false
    SHOW_DEINSTALL_CONFIRMATION=false
    SHOW_DEINSTALL_PROGRESS=true
    REMOVE_HOMES={"c:\oracle\ora81","c:\oracle\InstantClient\10.1.0"}
    You still have to manually update/remove the PATH & TNS_ADMIN environment variables and the file system directories.

  • Good afternoon ladies and gentlemen!   My question concerns the impossibility to open RAW-files directly from the program Adobe Bridge. At the moment when you open a RAW-file from Adobe Bridge by double-clicking, RAW-file is opened only in Photoshop. In t

    Good afternoon ladies and gentlemen!
    My question concerns the impossibility to open RAW-files directly from the program Adobe Bridge. At the moment when you open a RAW-file from Adobe Bridge by double-clicking, RAW-file is opened only in Photoshop. In the settings Adobe Bridge - in "open RAW-files by double-clicking in Adobe Camera Raw» box is checked. When you try any changes in the settings Adobe Bridge system displays a message:
    Bridge's parent application is not active. Bridge requires that a qualifying product has been launched at least once to enable this feature.
    The entire line of Adobe products on my computer updated to the latest updates. Previously, a family of products Adobe Photoshop on your computer is not set. Computer - PC, Windows 7 Enterprises.

    <moved from Adobe Creative Cloud to Bridge General Discussion>

  • My question concerns the ipad monthly calendar view.

    My question concerns the ipad monthly calendar view.  An all day event spans two days in the monthly calendar view.  Is this a bug?

    The entry is correct in day and week view.  In the month view, the event carries to the next day indicating it ends at 12:00am.

  • 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

  • How do I check the oracle client version?

    Hi All,
         How do I check the oracle client version installed from the OS level. I do know my database version I need to check which client is being used. Is there a table where this information is stored.
    Thanks
    Shabna

    disp+work.exe -V will tell you which OCI version was used during compiling and linking.
    Oracle uses release independent DLL Names (Unix people would say Shared Libraries) and therefore the SAP Kernel will dynamically load any Oracle Client Version found in the standard DLL Load Path during startup.
    If you have more versions installed on your computer and you are not shure which one is loaded you can use Process Explorer (freeware, see www.sysinternals.com) to find out which one is loaded. If they belong to an Oracle_home (up to release 9.2) refere to Oracle Universal Installers Inventory information in order to find out which exact version is used.
    If an Oracle10 Instant Client is used, there is no corresponding Oracle_Home. In this case you can use Windows Explorer (right click on the  DLL -for example oci.dll), select properties, the Version Tab and File Version).
    But unfortunately Oracle is not updating the File Version every time they are patching something.
    An SAP ABAP Server Integrated Resource is the version information disp+work.exe -V is listing (evquivalent to SM51 - Release Information).
    <b>Datenbank Client Library : OCI_10201_SHARE (10.2.0.2.0)</b>
    OCI_10201_SHARE is telling us the compile/link environment, the number in brackets (only available starting with Oracle10) tells us the the result of an Oracle Client GetVersion call. Unfortunately this one does also not reflect the installed Minipatch version up to now.
    Here are some results on 10.2.0.2 Windows X86_64:
    SM51: Datenbank Client Library : OCI_10201_SHARE (10.2.0.2.0)
    Explorer (OCI.DLL located in the same directory as disp+work.exe):
       10.2.0.2.0 Patch2
    Explorer (oraociicus10.dll - the instant client implementation, this version is the one actual since mini patch 10.2.0.2.5 and it was definitely changed in 10.2.0.2.5):
       OraOCIICUS10.dll - 10.2.0.1.0
       oracore10.dll - 10.2.0.1.0 Production
       oranls10.dll - 10.2.0.1.0 Production
       orasnls10.dll - 10.2.0.1.0 Production
       oraunls10.dll - 10.2.0.1.0 Production
       oravsn10.dll - 10.2.0.1.0 Production
       oracommon10.dll - 10.2.0.1.0 Patch1
       orageneric10.dll - 10.2.0.2.0 Patch2
       oraclient10.dll - 10.2.0.2.0 Patch2
       orapls10.dll - 10.2.0.1.0 Patch1
       orasql10.dll - 10.2.0.1.0 Production
       oraxml10.dll - 10.1.0.2.0
       orahasgen10.dll - 10.2.0.1.0 Production
       oraocrutl10.dll - 10.2.0.1.0 Production
       oraocr10.dll - 10.2.0.1.0 Production
       oraocrb10.dll - 10.2.0.1.0 Production
       oranbeq10.dll - 10.2.0.1.0 Production
       orantcp10.dll - 10.2.0.1.0 Production
    oracommon10.dll from the rdbms server does report 10.2.0.2.0 Patch5 at the same time. compare it with the version information of oracommon10.dll included in oraociicus10.dll. Both patches are included in the same patchset (10.2.0.2.5).
    there are two possible conclusions about this:
    1. the version infomation is not very reliable.
    2. the Oracle Patch and Build environment is not very reliable
    Peter

  • OLE driver included in the Oracle client 9i 9.2.04?

    is that OLE driver included in the Oracle client 9i 9.2.04 for windows 2000
    Message was edited by:
    shakil_zubair

    I believe there are three install options for 9.2 client ( Admin, Runtime and custom). If you choose runtime, OLE is not included. If you choose admin, OLE gets installed. If you choose custom and if you include oracle windows interfaces option, OLE gets installed. ( This is for the 9.2.0.1 base client install. I am not sure above 9.2.0.4 patchset)
    Hope this helps!
    -Ramesh

  • Questions concerning the Apachectl file in Oracle HTTP Server

    Three more questions concerning Apachectl file:
    (1) The ORACLE_HOME in the file should be the ORACLE_HOME for HTTP SERVER, not the one for database, right?
    ORACLE_HOME=/u01/app/oracle/product/10.2.0/http_1
    (2) The TNS_ADMIN in the file should be the TNS_ADMIN for HTTP SERVER, not the one for database, right?
    TNS_ADMIN=${TNS_ADMIN="/u01/app/oracle/product/10.2.0/http_1/network/admin"}; export TNS_ADMIN
    (3) I don't have a httpd.pid file pointed by PIDFILE. Is this a problem?
    PIDFILE=/u01/app/oracle/product/10.2.0/http_1/Apache/Apache/logs/httpd.pid

    1) right, OHS should be installed in separate home then db
    2) not right...in OHS there is no TNS entry...frankly there is no "/ADMIN" dir at all! In db ORACLE_HOEM TNS entry is irrelevant for OHS...it looks the same before and after instlation of OHS.
    3) On my server "httpd.pid" is in "C:\oracle\product\10.2.0\db_2\Apache\Apache\logs" and content is "2272". There is reference in httpd.conf file "PidFile logs/httpd.pid". I have never touched or reconfigured it by myself, httpd.conf is customized by instalation of apex!
    Hope this helps

  • Can't find how and where to downaload the Oracle Client 8i and Developer 6i

    All,
    I am looking for downloads at OTN for the following.
    1. Oracle Client 8i
    2. Oracle Forms and Reports 6i
    I had them installed on my m/c but lately I have been getting SQL*Net connection failures. I have been suggested to install the whole developer tools again.
    Any help in this regard is appreciated.
    Regards,
    Susheel K Raina.

    Here is the link - I just verify prior to posting it here.
    http://otn.oracle.com/software/products/forms/content.html
    For the Oracle 8i client, download the 8i database server and do a custom installation - client installation is one of the options.
    hope this proves useful
    regards

  • Anyone installed the Oracle client software on MBP?

    Hi there,
    I'm running into problems installing the Oracle 10g client software (not the server) on my macbook Pro (Intel)
    The instant client installs fine, but it doesn't have the tools I need (sqlldr, imp, exp). During the install the installer gives me a java UnsatifiedLinkError.
    Any thoughts? Sorry if I've missed a previous thread on this, but searches turned up nothing.

    So do u mean if we have SQLPLUS on the box, it implies that client tools are installed ?
    and the SQLPLUS.exe is the one that indicates the existance of client tools on a box and this has to be present on the box to say that the clinet tools are installed.
    Can we have client tools on the box with out SQLPLUS.?

  • How can I specify where to look for the server installation of the Oracle client?

    I assume changing the $ORACLE_HOME variable would get ORE to use 12.1.0.2 instead of 11.2.0.3, but I only want to change which Oracle R uses. How can I override the server's $ORACLE_HOME location when I'm connecting to the database from the client side?
    OS: Linux Mint 17 / Solaris 11.1
    R version: 3.1.2 (both)
    ORE version: 1.4.1 (both)

    On the server, the Oracle R Enterprise installation is tied to an Oracle Database installation.  Have you installed Oracle R Enterprise for both the 11.2.0.3 and 12.1.0.2 databases?
    If so, the client connect will be able to find the ORE server when you connect to the database using ore.connect:
        R> ore.connect(user = "username", sid = "database sid", host = "hostname/database server", password = "user password", all=TRUE).
    During the ORE installation on the server, we lay down software bits on the OS, install a schema into the database, plus add some libraries to $ORACLE_HOME.
    Sherry

Maybe you are looking for

  • Deploying a secure internal wireless network

    Hi, We've got a 5508 WLAN controller with about 200 WAPs currently deployed for guest access only. We would now like to deploy wireless for our internal network as well and would like for this to support voice as well. I'm reviewing the various optio

  • Export PDF Files in BW 3.5

    Hi Experts, is possible to export a web template to PDF File in SAP BW 3.5? Greetings and regards

  • Faulting application SAP Business One.exe, version 8.80.233.0

    Daily the following event id 1000, application error is logged in on my SAP server. Faulting application SAP Business One.exe, version 8.80.233.0, time stamp 0x4c9ba79d, faulting module ole32.dll, version 6.0.6002.18277, time stamp 0x4c28d53e, except

  • Installing Lightspark and/or Gnash? [compile errors]

    The Flash player in Firefox (and, more importantly xulrunner generally and thus in Conkeror) is unusable. I've even tried the fresh player plugin to use Google Pepper Flash in Firefox, and it's the same - it stutters/jitters. (Plays fine in Chrom{e|i

  • ATI 3870 Mac edition help please!!!

    I can't get my ATI 3870 Mac & PC edition video card to install any OS previous to 10.5.4 because apple does not support them. Can someone please help me. So far I have figured out I need to take the ATI kexts and put them on the install DVD using Pac