Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: no. of users supported

RE: no. of users supported

From: Kennedy, Jim <jim_kennedy_at_mentor.com>
Date: Thu, 29 Sep 2005 10:36:07 -0700
Message-ID: <EF25DB6D87DD1A469C80A312C63C3B4C049358FC@SVR-ORW-EXC-07.mgc.mentorg.com>


Too many variables. I have seen just select environments only able to run 1 user and on the same hardware, database etc. run 1,000 users. (2 CPUs 200 M Hertz.) It depends upon

  1. Use bind variables.
  2. Parse once, rebind and execute thereafter.
  3. Efficient SQL with the proper indexes etc.
  4. No or low row chaining.
  5. Array interface for fetches.
  6. Efficient and performant code.
  7. What the load is? How many queries per unit time, how much data? Speed of disks, speed of processor, etc.

To know you really have to bench mark it with the type of load you are going to use. WAGs can really hurt.

Jim

(WAG -> Wild Assed Guesses)

-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Subbiah, Nagarajan Sent: Thursday, September 29, 2005 10:28 AM To: 'oracle list'
Subject: RE: no. of users supported

It also depends on the processor speed. WE used to have issues with 8 - 400MHZ CPU with less than 100 connection and mostly select queries. Assuming your hit ratio is close to 100% and with the average run time of the all the queries are less than 20 milliseconds, I don't see any issues with 2 - 1GHZ processor supporting at least 50 users.

-----Original Message-----
From: Dennis Williams [mailto:oracledba.williams_at_gmail.com] Sent: Thursday, September 29, 2005 1:00 PM To: raja4list_at_yahoo.com
Cc: Allan Nelson; oracle list
Subject: Re: no. of users supported

Raj,

> The database is a complete read activity. not much inserts.

In general you are correct that only selects will reduce the server load,
meaning the server should be able to support more users. But there are several additional issues:

I have seen Solaris servers easily supporting the number of users you have
mentioned.

Dennis Williams

--
http://www.freelists.org/webpage/oracle-l
--
http://www.freelists.org/webpage/oracle-l
--
http://www.freelists.org/webpage/oracle-l
Received on Thu Sep 29 2005 - 12:38:24 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US