Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Retrieve "alter session" made by other sessions ?

0 views
Skip to first unread message

Pascal Gineste

unread,
Nov 9, 2002, 4:52:24 PM11/9/02
to
High oracle gurus,

I'm a beginner with oracle and i'm wondering if this is possible to
retrieve parameters altered with the "alter session set xxxx=yyyy"
commands
BUT ON OTHER SESSIONS THAN THE CURRENT ONE.

Indeed, v$parameter allows to retrieve parameters for the current
session.

What about if session has been established by for exemple
impromptu/business object or SAS (those sessions are not the current
one).

Moreover, i would like to know how to retrieve the current
isolation_level
set by an alter session set isolation_level=xxxx :
I saw that this parameter seems not to be in v$parameter for
the current session ?

Thank you in advance,

Jusung Yang

unread,
Nov 10, 2002, 12:03:14 PM11/10/02
to
> Moreover, i would like to know how to retrieve the current
> isolation_level
> set by an alter session set isolation_level=xxxx :
> I saw that this parameter seems not to be in v$parameter for
> the current session ?
>

Isolation_level is a session only parameter, not an initialization
parameter. Look up V$transaction.flag :

http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&selm=42ffa8fa.0209142337.72304d81%40posting.google.com

SQL> select to_bin(268435456) from dual;

TO_BIN(268435456)
----------------------------------------
10000000000000000000000000000

So, if that particular bit is set, you are in serializable isolation
level.


- Jusung Yang

0 new messages