Oracle client memory requirements

Hi everyone,
I read the Oracle 8.1.? for Linux documentation as saying Oracle products won't install on an Intel computer with less than 128MB RAM. Does anyone know if this is true for installing just the client? (If so, it seems like quite a stiff requirement for an operating system which boasts such efficient memory usage.)
Thanks in advance,
Ted Gordon

No, it's nonsense. I've installed the Oracle Server on an Intel compatible with only 96mb memory. It's not fast, but it works.
If you will be using Oracle in a production environment you will need a better configuration, but for testing it's good enough.

Similar Messages

  • SQL server client memory required

    Hy
    I want to ask, that I have a MS SQL 2000 Enterprise edition server. How much memory required per client. I know, the SQL system memory required (more 1 G) but my question is, if my SQL server use plus one client, how much memory must take in my blade?
    pls help

    Although there are some thumb rules out there, it is hard to tell as you did not specify which kind of access the users are doing at the database. For ressource intensive querying you should put more memory in your server, where on the other hand you would not have that much memory for users doing plain and simple (Select / DML ) operations. How many users do you have, how many are connected on average, what are they doing on the database ?
    Jens K. Suessmeyer.
    http://www.sqlserver2005.de
    ---

  • Oracle client still required?

    Do I need to install oracle client in order to install ODP.NET? Thanks.

    The JDBC thin driver does not require the installation of an Oracle client.
    I have heard that there will be a streamlined Oracle client installation process in Oracle 10g. I expect that the 10g client and database will be available some time early next year, based on the latest press releases.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Oracle Client Version requirements

    We've built a program using VS2005 and ODT 10.2.0.2. The database it is accessing is 9i. In order for the program to establish connectivity with the server, we had to load Oracle Client 10.2.0.2, with the installing user having administrative priviledges. No problem. Things work fine.
    However, users access the computer with the program installed via terminal services over their network. If a user who does not have administrative priviledges via Active Directory, a error is generated stating “The provider is not compatible with the version of Oracle client”.
    If the user is given administrative priviledges, this error does not occur. As I ponder this, I wonder if terminal services uses the priviledges assigned to the user to determine the Oracle Client to use on the host computer.
    Could this be the case, or am I missing something?
    Allen
    [email protected]

    does the computer with the program installed has multiple ORACLE_HOME (i.e home for 9i client and home for ODP.NET)? I suspect, only administrators can access ODP.NET home.

  • JAVA beans and JAVA related services require Oracle client to be installed?

    Can you please advice whether an application server that make use of JAVA beans and JAVA related services require Oracle client to be installed? For an example if the solution build based on Java and JBOSS to be used as application server, do we still require oracle client to be installed and configure the tnsnames in order to communicate to database server?

    SHANOJ wrote:
    Can you please advice whether an application server that make use of JAVA beans and JAVA related services require Oracle client to be installed? For an example if the solution build based on Java and JBOSS to be used as application server, do we still require oracle client to be installed and configure the tnsnames in order to communicate to database server?Oracle client is not required when JDBC is used to connect to the remote DB

  • Oracle client required for Essbase Installation

    Hi
    I installed Essbase server and EAS server with foundation services in one Windows Machine.
    My RDBMS (Oracle) Is installed on a different Machine.
    Do i need to install Oracle client on my Essbase machine to configure with RDBMS? or Oracle Client installation is not required to configure with RDBMS?
    Thank you.

    You don't need the Oracle client if you want to configure the foundation database as it uses JDBC drivers which are included in the foundation installation.
    The Oracle client is useful if you want to set up Oracle ODBC connections to be used with essbase SQL data loads.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • 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.

  • Oracle 9i client memory leak?

    Hi
    Very recently we upgraded our oracle client from 8i to 9i (9.2.0.4.0), One of out NT services which was built with 8i client libraries now rebuilt with 9i client libraries and put into production. However now we see huge memory increase of that service. Normally it should be consistent and when the load goes down it memory usage should drop down. but in this case within 1hr it will increased up to 850MB. Our code didn't change.
    So we're suspecting is there any know memory leak issue in 9i client libraries. if so what is the fix for it.
    Also if I try to find the process info of our service, I found there are lot of opened file handles for following files
    D:\oracle\ora92\xdk\mesg\lpxus.msb
    sometimes more than 2500 handles
    again I tried with our service compiled with 8i client and ran under 8i client environment, then maximum number of handles opened to this file is under 20-30 and just after the load gone away it droped down to 1.
    Pleas help me on this issue

    I'm using the oracle ODBC driver 8.05.10 with MFC and client version 8.0.5. In my experience you can't prevent memory leaks with that or earlier versions of the ODBC driver. Client patchkits or service packs for NT or the Visual Studio doesn't solve the problem.
    The following code will result in a memory leak with the oracle driver. With every expiration of the timer the leak will grow.
    void CTestOdbcOracleDriverDlg::OnTimer(UINT nIDEvent)
    TCHAR errString[255];
    //open the database with class CDatabase
    //use of CRecordset
    TRY {
    //my table name is AL_ALARME_LOG
    pMyRecordset->Open(CRecordset::dynaset,"SELECT * FROM AL_ALARME_LOG",CRecordset::none);
    //do something with the data
    Sleep(0);
    pMyRecordset->Close();
    CATCH_ALL(error) {
    error->GetErrorMessage(errString,255);
    DELETE_EXCEPTION(error);
    END_CATCH_ALL
    CDialog::OnTimer(nIDEvent);
    The same code with the Microsoft ODBC driver
    doesn't cause memory leaks.
    Andreas ([email protected])

  • Windows 8 operating system + applications requiring 32-bit oracle client

    Hi,
    We are trying to install oracle 32 bit client on Windows 8 opertaing system
    11.2.0.1
    Have done so successfully on Windows 7 but  Windows 8 says doesn't meet minimum environemnet requirements.
    We have a 32-bit appliactuion which requires oracle client
    When we tried the 64-bit oracle client on the Windows 7 onne, application didn't work so henec the 32-bit oracle client which allowed the application ro work O.K.
    Problem is we need to have this application working in Windows 8 environment.
    Any thoughts if can use oracle 32 bit client on Windows and if so where I can download from?
    Thanks

    Regardless of whether test or production machine, why would you choose an unsupported combination ? Which exact version of Win 8 ?
    Certification tab is at My Oracle Support - https://support.oracle.com - access to which requires a paid support contract with Oracle.
    HTH
    Srini

  • Win64_11gR2_client still throws 'requires oracle client 8.1.7 or greater'

    Hey All,
    I just installed the new win64 11g R2 Client on my windows 2008 server machine, with the ASP.NET client, however i'm still getting the error:
    System.Data.OracleClient requires Oracle client software version 8.1.7 or greater
    Now I went to the ODBC Manager (64 bit, not the 32 bit) and tested my connections, so i know the client is connecting.
    Is there something special i need to use to make this work?
    Regards,
    Dan Regalia

    DanRegalia wrote:
    I just installed the new win64 11g R2 Client on my windows 2008 server machine, with the ASP.NET client, however i'm still getting the error:
    System.Data.OracleClient requires Oracle client software version 8.1.7 or greaterWhich Client package exactly? I can't find a version of ODT other than the beta, which seem to be 32-bit. Version of Visual Studio?
    Is Visual Studio, or your web/asp.net app, 32 or 64-bit? If the app is 32-bit, it needs ("looks for") the 32-bit Oracle client libraries. Maybe that is the case here?
    You could use Process Monitor for troubleshooting the issue:
    http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
    In addition, consider using the Oracle provider instead.
    http://msdn.microsoft.com/en-us/library/77d8yct7.aspx
    Edited by: orafad on May 13, 2010 5:42 PM
    Edited by: orafad on May 13, 2010 6:46 PM

  • Oracle Client required?

    I am running 10gR2 Standard Edition Server on my computer. When I go to install ODT.NET, it want's to install another Oracle Client in a new Oracle Home.
    It did the same thing when I loaded the beta of ODT.NET earlier this year. Having two Homes was a pain.
    Since I already have all the Oracle Networking I will ever need in my current 10gR2 home, why does ODT require a new Client installation??? I'd rather it just use the home that I already have.
    Is there some way to install ODT without creating a new Home?
    ...don

    Mark,
    Thanks for the response!
    The last time I tried to install ODP, I pointed OUI to my existing Oracle Home, and after the install all my client applications (TOAD, in-house programs, etc) could not find the Oracle DLL's to connect. SqlPlus still worked and my database was still available, but that's all.
    So, I've tried installing to a new home and had to deal with two sets of tnsnames.ora's, etc, and I have also tried installing to the existing home but lost my OCI connectability. Apparently I am doing something wrong. Any ideas???
    ...don

  • Oracle Client requirement for BO XI 3.1 Desktop Intelligence

    Will the BO XI3.1 Infoview or Desktop Intelligence work with Oracle 8i Client on the user's desktop? Or do they need to Oracle client versions 9i and greater.

    Hi
    for Desktop Intelligence XI 3.1 the oldest officially supported version of Oracle is Oracle 9.2 over the native client (Oracle Net Client 9.2). What you can try though is to use the Oracle ODBC driver since Generic ODBC sources are also supported.
    Regards,
    Stratos

  • Oracle Client 8.1.7 required!

    Hi all,
    I need the ODBC drivers for oracle 8.1.7. Can i get a link from where i can get oracle client 8.1.7, though this version is de-supported by oracle.
    thanks!

    There's no direct download available from Oracle. You might have to open SR with Oracle support.

  • Permission required to access oracle client service names

    Hello,
    I  actually have a problem with accessing oracle client service names in Crystal.
    The problem is:
    I installed crystal reports 2008 and installed oracle client on a machine (I used an account that is a local administrator of the machine during installation) but the problem is that the users who are going to access crystal are standard users and they couldnu2019t access the services in oracle client and when they try to refresh the report they get the following error
    "Failed to load database information. Details: the DB connector 'crdb_oracle.dll' couldn't be loaded. the correct version of the database client for this database type might not be installed"
    I gave the users permission on the two folders (C:\program files \Common files \) and RegEdit : (C:\Windows \ System 32\) but the problem wasnu2019t solved so I made them local administrators and the problem was solved but I donu2019t want to make the users  local administrators on the machine , some people told me that I have to install oracle client with the user who will be using crystal but the problem is that two users will be working on the machine not just one and they have two different accounts and when I tried to give the users full control permission on oracle folder , the problem wasnu2019t solved, So I wanted to know if any one faced a similar problem and how to solve it without making the users local administrators.
    Thanks in advance.

    Hello,
    It appears you have everything installed and configured for Cr to work so it looks like it's a DB issue.
    What do you see in the logs if you enable logging on the Server? Are your requests even getting to the Server from CR under the user account?
    Test it using the admin and then the user account.
    You could try checking on the option to use Trusted Authentication in the database log on windows of CR. This should pass the users PC log on credentials to the Server.
    Thank you
    Don

  • Oracle Client(8.0.5) installation on Linux(6.0)

    Please Help,
    These are the steps followed in the Oracle
    client installation of the Linux
    version
    1. Loaded SQLNET, TCP/IP Adapter and sqlplus from the Oracle CD for Linux.
    2. While running SQLPLUS it gave the 'Missing Library file'
    3. Added LD_LIBRARY_PATH parameter to .profile, problem solved.
    4. While running SQLPLUS a new message 'Segmentation Fault - Core dumped'
    started coming.
    After analysing it was observed that none of the Linux memory parametre
    required for oracle had been tuned. these parameters are :-
    shmmax,shmseg, shmmin, shmmni, semmns, semmni
    We know the value of these parameters but the problem is that in linux we
    are not able to find the Kernel paramater file,
    as we do not know the Kernel parameter file name and the location in which
    it is situated.
    I have done the configuration of Oracle in Sun Solaris successfully and
    also modified the Kernel parameter. the following in the sample data
    extracted from the /etc/system file present in Sun Solaris.
    set shmsys:shminfo_shmmax=208388608
    set shmsys:shminfo_shmseg=15
    set shmsys:shminfo_shmmin=1
    set shmsys:shminfo_shmmni=150
    set semsys:seminfo_semmns=250
    set semsys:seminfo_semmni=100
    What I request is that kindly tell me how and where to update the same in
    the Linux for installing Oracle Client(8.0.5) on Linux(6.0).Regards And Thanks
    Sanjay Kr. Pandey

    You'll have to be prepared to wade through and understand the Linux way of recompiling your kernel. The files can be located using the "find" command. There is some great "HOW-TO"s in the Linux RedHat site.
    Tip: Be very careful how you answer the "make config" questions because it can mess up the resulting VMLINUZ object. Also, be sure to place secondary entry in your "lilo.conf" to allow you a graceful way of getting back to the old kernel should the new one fail.
    Good Luck!

Maybe you are looking for

  • Issue with B2B Simulator for testing Healthcare Integration in SOA 11.1.1.6

    Hi All, I've installed the healthcare integration patch on top of SOA 11g PS5, and am now trying out the integration scenarios as detailed here . When running the B2B simulator as detailed in the readme, I'm able to see that the ADT file is polled fr

  • How to call initial screen from Sm30 screen back button

    Hi All, I have written a program to call SM30 transaction using BDC method.The values entered on initial screen of report are being passed on to SM30 screen through BDC . As per selection criteria inserted on screen only those particular entries are

  • Strange missing renders

    As some of you know I have FCP HD 4.5 I've upgraded to 2.5 gigs of RAM and 500 gigs of HD space. I'm color correcting now and render alot. I also shut down frequently to do other things and when I get back the parts I rendered are nolonger rendered.

  • Screen locked in position

    After installing new cartridges and scaning in aliginment page new printer locked on screen that says replace cartridge and will screen will not move. Unit will not print or anything.

  • Airport Utility Problem

    My connection to my Airport Extreme base station is strong and seems to be working fine,but when I open Airport Utility it says it is unable to find any airport base stations even though there clearly is a working one. And, since it doesn't recognize