Oracle
The Oracle screen lists the properties of every Oracle database used by a connected application. One line per (Application, Product / Instance). The data is collected by the Nomasx-1 connector through standard V$ views.
It is the inventory required for the Oracle licence audit — and the input for the Licenses → Oracle compliance report.
At a glance
Goal of the view
For each Oracle database backing a connected application:
- Inventory of installed products. Database edition, packs, options — exactly what an Oracle LMS audit asks for.
- Sizing data. CPU count + active vs total users + technical users + storage size — the inputs of the Oracle licence calculation, whether NUP (named-user plus) or processor-based.
- Data Guard footprint. The
DGflag tells whether the instance participates in a Data Guard configuration — relevant for failover sizing and licence dual-counting questions.
Columns
| Column | Source | What it tells you |
|---|---|---|
| Application ID | ORAP_APPS_ID — application identifier. | The connected application. |
| Product | ORAP_PRODUCT — product / pack / option name. | What is installed (Enterprise Edition, Diagnostic Pack, Advanced Compression, …). |
| Full version | ORAP_FULL_VERSION — full version string. | Exact installed patch level. |
| Version | ORAP_VERSION — major version. | Major version (19c, 21c, …). |
| Hostname | ORAP_HOSTNAME — host. | Server hosting the instance. |
| Instance | ORAP_NAME — instance name. | Oracle SID / DB unique name. |
| Instances count | ORAP_COUNT_INST — number of instances. | RAC distinguishes from single-instance. |
| CPU | ORAP_CPU — CPU core count. | Used for processor-based licensing. |
| Active users | ORAP_ACTIVE_USERS — count. | Active named accounts on the database. |
| Total users | ORAP_TOTAL_USERS — count. | All named accounts on the database. |
| Technical users | ORAP_TECHNICAL_USERS — count derived from USRP_TECHNICAL. | Users flagged as technical in Nomasx-1 — excluded from NUP. |
| Pack | ORAP_PACK — pack code. Hidden. | Used by the licence compliance computation. |
| Data Guard | ORAP_DG — boolean. | Whether the instance is part of a Data Guard configuration. |
| Size GB | ORAP_SIZE_GB — total size. | Storage footprint. |
Tips & best practices
- Filter on Product containing "Pack" to extract the management packs in use — the heaviest audit topic.
- Cross-check Active users against Total users — a large gap means dormant accounts on the database itself, separate from the source-system accounts.
- The Technical users column lets you compute a "real human" NUP figure when negotiating the renewal.
- A Data Guard configuration doubles the licence requirement unless the standby is configured as a passive failover — clarify with Oracle.