Oracle Database Properties Report

This script displays all database property values configured in the Oracle database. It queries the DATABASE_PROPERTIES view to list property names and their corresponding values, providing a quick overview of database-level configuration settings.

oraclesqlreporting-analyticsv1.0.0
0 stars0 downloads17 views0 comments
By OracleDba • Created

Code

(13 lines)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- -----------------------------------------------------------------------------------
-- File Name    : https://oracle-base.com/dba/monitoring/db_properties.sql
-- Author       : Tim Hall
-- Description  : Displays all database property values.
-- Call Syntax  : @db_properties
-- Last Modified: 15/09/2006
-- -----------------------------------------------------------------------------------
COLUMN property_value FORMAT A50

SELECT property_name,
       property_value
FROM   database_properties
ORDER BY property_name;

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!