|
from metalink,
u can select distinct type from v$session , and background, user, recursive.
Several types of sessions are reported in the V$SESSION view
of Oracle. The Oracle background processes will create a
minimum of five sessions -- more depending upon the
settings for DB_WRITERS, the checkpoint process, archiving,
etc. Each user logged into the database will create at least
one session for the initial login, and may have one or more
recursive sessions too. Recursive sessions occur on
certian operations initiated by a user login and will add
another row to V$SESSION for that user. It is often useful
(or necessary) to determine how many sessions for a given
user are actual logins and how many are recursive.
The TYPE column of V$SESSION can be used to determine how
many sessions are created by background processes, how many
by users and how many by recursive sessions. it should
contain one of three values: BACKGROUND, USER, and
RECURSIVE.
但是不知道recursive session产生的具体例子。 |
|