Oracle License Usage Report

This script displays session and resource usage information related to Oracle licensing. It queries the V$LICENSE view to show current and maximum session usage statistics, helping DBAs monitor resource consumption for licensing and capacity tracking.

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

Code

(10 lines)
1
2
3
4
5
6
7
8
9
10
-- -----------------------------------------------------------------------------------
-- File Name    : https://oracle-base.com/dba/monitoring/license.sql
-- Author       : Tim Hall
-- Description  : Displays session usage for licensing purposes.
-- Requirements : Access to the V$ views.
-- Call Syntax  : @license
-- Last Modified: 15/07/2000
-- -----------------------------------------------------------------------------------
SELECT *
FROM   v$license;

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!