Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Where to find the session information

Status
Not open for further replies.

kzhangkzhang

Programmer
Mar 9, 2004
25
0
0
US
Hi All:

We can use alter session command to change a lot of session information (e.g. ALTER SESSION SET OPTIMIZER_MODE = RULE).

My question is how to find all session information? What command can tell me the value for OPTIMIZER_MODE of my current session?

Thanks!

 
I think I figure it out by myself:

select * from v$parameter
where name = 'optimizer_mode'
/
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top