Query the v$parameter view to learn about your database parameter settings.
v$parameter dynamic performance view
The SHOW PARAMETER command is useful as far as it goes, but you can
learn even more about your database parameter settings by querying the v$parameter view. The v$parameter view not only tells you the values of
current parameter settings, it also provides other useful information such as whether you can modify a parameter and whether or not any given
parameter setting represents the default value for that parameter.
The following mouseover describes the columns in the v$parameter view:
v$parameter Characteristics
You can see that the v$parameter view provides you with a wealth of information about your database parameter settings. The following query, for
example, returns a list of all parameters that you can modify at the system level while the database is running:
SELECT name
FROM v$parameter
WHERE issys_modifiable <> 'FALSE';
Any of the parameters returned by this query can be modified on the fly using the ALTER SYSTEM command.
Learn how to modify parameter settings using the ALTER SYSTEM and ALTER SESSION commands in the next lesson.