Oracle Database Options Report

Displays all Oracle database options and their installation status. Useful for checking which Oracle features are enabled or available in the current database instance.

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

Code

(14 lines)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- -----------------------------------------------------------------------------------
-- File Name    : https://oracle-base.com/dba/monitoring/options.sql
-- Author       : Tim Hall
-- Description  : Displays information about all database options.
-- Requirements : Access to the V$ views.
-- Call Syntax  : @options
-- Last Modified: 12/04/2013
-- -----------------------------------------------------------------------------------

COLUMN value FORMAT A20

SELECT *
FROM   v$option
ORDER BY parameter;

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!