Notifications
Clear all

How can I increase my Oracle max processes?

2 Posts
1 Users
0 Reactions
905 Views
0
Topic starter

How can I increase my Oracle max processes? My DAO is failing, seemingly due to not having enough Oracle processes available.

2 Answers
0
Topic starter

Using an oracle "system" user, see your max process setting via:

select * from V$RESOURCE_LIMIT where resource_name = 'processes';

INITIAL_ALLOCATION is the value you're looking for.

To increase, execute something like this:

alter system set processes=1000 scope=spfile;

Finally, restart your oracle. If you execute the select again, you should see the increased process max value.

0
Topic starter

NOTE - this doesn't work on 18 XE ... the command doesn't seem to actually update the max processes. However, we also don't seem to run out of processes when installing/running on 18, so the entire topic is moot.