| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: Newbie:How to estimate PROCESS
Hi all,
I don't see what cursor_space_for_time has got to do with it, but for what it is worth one can get a highwater mark from x$ksupr that should give you a feel for how many processes you have been using.
select
'processes' parameter,
count(*) setting,
count(decode(ksuprflg, 0, null, 0)) hwm,
to_char(
100 * count(decode(ksuprflg, 0, null, 0)) / count(*),
'99999'
) || '%' usage
from
sys.x$ksupr
/
HTH, Steve Adams
Oracle Internals Expert
>The number of process is dependent on the size of your application,
>particularly: Are you suing multiple database writers, are you using
>cursor space for time and how many users are accessing your system. This
>will determine what that number should be.
>
>-Sheilah Scheurich
>DBA
>
>
>Pui Ming WONG <s11976_at_net2.hkbu.edu.hk> wrote in article
><5qp2kl$bfc$1_at_power42t.hkbu.edu.hk>...
>> I'm a newbie DBA (we run oracle 7.6.1 under Digital Unix 3.2)
>> I would like to know some guidelines on setting the PROCESS
>> parameter in our init.ora
>> Usually how many is enough ?
>
![]() |
![]() |