Administrator
|
They are different things.
session_per_user is the limit for the number of concurrent sessions that belong to a DB user.
sessions is the general limit. that is, you can't have more than 800 sessions in your database (if you set the sessions parameters to 800)
Some background info (Ref Oracle:)
SESSIONS specifies the maximum number of sessions that can be created in the system. Because every login requires a session, this parameter effectively determines the maximum number of concurrent users in the system. You should always set this parameter explicitly to a value equivalent to your estimate of the maximum number of concurrent users, plus the number of background processes, plus approximately 10% for recursive sessions.
|