-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathDBA Editions.sql
More file actions
20 lines (19 loc) · 951 Bytes
/
DBA Editions.sql
File metadata and controls
20 lines (19 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*************************************************************************/
/* */
/* (c) 2010-2024 Enginatics GmbH */
/* www.enginatics.com */
/* */
/*************************************************************************/
-- Report Name: DBA Editions
-- Description: Database editions, their type and status
-- Excel Examle Output: https://www.enginatics.com/example/dba-editions/
-- Library Link: https://www.enginatics.com/reports/dba-editions/
-- Run Report: https://demo.enginatics.com/
select
de.edition_name,
de.parent_edition_name,
ad_zd.get_edition_type(de.edition_name) type,
de.usable,
xxen_util.yes(decode(de.edition_name,sys_context('userenv','current_edition_name'),'Y')) "Current"
from
dba_editions de