> 
> Hi,
> 
> I have been reading through all the queries on your page at interaccess.
> 
> I have a query :
> 
> I have a multi-processor system. I need to determine how many CPUs are
> being used by oracle. How do i set the number of CPUs in the init files ?
> 
> Please reply.
> 
> Warm regards,
> ren
> 
Ren,

To find out how many CPUs your database is using, query the V$PARAMETER view:

SELECT name, value, isdefault
FROM v$parameter
WHERE name = 'cpu_count';

If you wish to change the value, add a line like the following to your
init.ora file:

cpu_count=8


Best of luck,


-Ari Kaplan
Independent Oracle DBA Consultant

<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
<-> For 235+ Oracle tips, visit my Web Page:                      <->
<->                                                               <->
<->             www.arikaplan.com                                 <->
<->                                                               <->
<->             email: akaplan@interaccess.com                    <->
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->

Back to Ari Kaplan's Home Page ack to Ari Kaplan's Home Page