Query to Displays a list of all the spfile parameters.
Query:
This query is used to display the parameter present in the spfile.
SET LINESIZE 500
COLUMN name FORMAT A30
COLUMN value FORMAT A60
COLUMN displayvalue FORMAT A60
SELECT sp.sid,
sp.name,
sp.value,
sp.display_value
FROM v$spparameter sp
ORDER BY sp.name, sp.sid;
Query:
This query is used to display the parameter present in the spfile.
SET LINESIZE 500
COLUMN name FORMAT A30
COLUMN value FORMAT A60
COLUMN displayvalue FORMAT A60
SELECT sp.sid,
sp.name,
sp.value,
sp.display_value
FROM v$spparameter sp
ORDER BY sp.name, sp.sid;