Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: V$SYSTEM_PARAMETER vs V$PARAMETER
In their scope...
View v$parameter shows current settings for a session.
View v$system_parameter shows system wide parameter settings.
See below:
SQL> select name, value from v$system_parameter where name like 'timed_stat%';
NAME VALUE
timed_statistics TRUE
SQL> alter session set timed_statistics = false;
Session altered.
SQL> select name, value from v$system_parameter where name like 'timed_stat%';
NAME VALUE
timed_statistics TRUE
SQL> c/system_//
1* select name, value from v$parameter where name like 'timed_stat%'
SQL> / NAME VALUE
timed_statistics FALSE
SQL> HTH,
-----Original Message-----
Sent: Wednesday, January 08, 2003 7:29 AM
To: Multiple recipients of list ORACLE-L
Hi,
Where these two, V$SYSTEM_PARAMETER, V$PARAMETER dynamic view are differs?
Both of them looks the same in structure and data as well.
Anybody have any idea.
Nirmal.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Deshpande, Kirti INET: kirti.deshpande_at_verizon.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting servicesReceived on Wed Jan 08 2003 - 08:14:23 CST
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
![]() |
![]() |