Oracle Non-Default Parameters Report

Displays all Oracle initialization parameters that have been changed from their default values. Useful for quickly identifying custom configuration settings in the database.

oraclesqlmaintenance-cleanupv1.0.0
0 stars0 downloads15 views0 comments
By OracleDba • Created

Code

(17 lines)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- -----------------------------------------------------------------------------------
-- File Name    : https://oracle-base.com/dba/monitoring/parameters_non_default.sql
-- Author       : Tim Hall
-- Description  : Displays a list of all the non-default parameters.
-- Requirements : Access to the v$ views.
-- Call Syntax  : @parameters_non_default
-- Last Modified: 11-JAN-2017
-- -----------------------------------------------------------------------------------
SET LINESIZE 150

COLUMN name FORMAT A50
COLUMN value FORMAT A50

SELECT name,
       value
FROM   v$parameter
WHERE  isdefault = 'FALSE';

General Comments(0)

Tip: Click on a line number in the code to add a line-specific comment

No general comments yet. Be the first to comment!