Oracle Database Tools, Features & Options

Typically, although not always, Options (and Packs) must be separately licensed, whereas Features come with the product and are enabled based on the product that is running (for example, Enterprise Edition). 

Check Usage

SET PAGESIZE 200

SET LINESIZE 200

SELECT i.instance_name,

       u.name AS feature_name,

       u.last_usage_date 

  FROM dba_feature_usage_statistics u,

       v$instance i

 WHERE detected_usages > 0

 ORDER BY 1;

For more detailed analysis use the script provided in Oracle Support Note: 1317265.1

OracleCostCalculator

By default DBA_FEATURE_USAGE_STATISTICS is updated about once per week (1). You can force a refresh using...

EXEC DBMS_FEATURE_USAGE_INTERNAL.exec_db_usage_sampling(SYSDATE);

Check Component Status

SET linesize 200

SET pagesize 40

COLUMN schema FORMAT a20

COLUMN comp_id FORMAT a15

COLUMN comp_name FORMAT a40

SELECT comp_id, comp_name, version, status, schema

FROM dba_registry;

Tools

Features

Options

Use the chopt tool after installation to add or remove Oracle Database options.

Enable

chopt enable oaa

chopt enable olap

chopt enable partitioning

chopt enable rat

Disable

chopt disable oaa

chopt disable olap

chopt disable partitioning

chopt disable rat

Packs

Coding

Bibliography & References


https://apex.oracle.com/database-features/ https://docs.oracle.com/en/database/oracle/oracle-database/12.2/refrn/V-OPTION.htm https://docs.oracle.com/en/database/oracle/oracle-database/12.2/dblic/Licensing-Information.html https://oracle-base.com/articles/misc/tracking-database-feature-usage
https://blog.enmotech.com/2017/12/17/14-oracle-18c-oracle-18c-new-features-whats-news/ 
Optionshttp://dborcloud.com/blog/2013/12/18/useful-query-to-find-out-oracle-licensing-option-usage/Database Options/Management Packs Usage Reporting for Oracle Databases 11gR2, 12c, 12cR2 and 18c (Doc ID 1317265.1)http://docs.oracle.com/cd/B19306_01/license.102/b14199/options.htm#DBLIC136 (10.2) (Details about the options and packs are available)https://docs.oracle.com/cd/E11882_01/license.112/e47877/options.htm (11.2)https://docs.oracle.com/cd/E11882_01/install.112/e47798/postcfg.htm#NTDBI2832https://docs.oracle.com/database/121/SSDBI/post_inst_task.htm#SSDBI5600https://docs.oracle.com/en/database/oracle/oracle-database/12.2/axdbi/chopt-tool.html
Feature Usage Trackinghttp://docs.oracle.com/cd/B19306_01/server.102/b14237/statviews_3114.htm#REFRN23396 (DBA_FEATURE_USAGE_STATISTICS)Database Options/Management Packs Usage Reporting for Oracle Databases 11gR2, 12c, 12cR2 and 18c (Doc ID 1317265.1)Place Holder For Feature Usage Tracking Bugs (Doc ID 1309070.1)(1) https://oracle-base.com/articles/misc/tracking-database-feature-usagehttp://www.morganslibrary.org/reference/pkgs/dbms_feature_usage_internal.html
Feature Availabilityhttps://docs.oracle.com/cd/B14117_01/license.101/b13552/editions.htm#sthref24 (10.1)https://docs.oracle.com/cd/B19306_01/license.102/b14199/editions.htm#BABJICBB (10.2) (details about which features are in which edition)https://docs.oracle.com/cd/B28359_01/license.111/b28287/editions.htm#DBLIC116 (11.1)https://docs.oracle.com/cd/E11882_01/license.112/e47877/editions.htm#DBLIC116 (11.2)https://docs.oracle.com/database/121/DBLIC/editions.htm#DBLIC116 (12.1)https://docs.oracle.com/en/database/oracle/oracle-database/12.2/dblic/Licensing-Information.html#GUID-0F9EB85D-4610-4EDF-89C2-4916A0E7AC87 (12.2)https://docs.oracle.com/en/database/oracle/oracle-database/18/dblic/Licensing-Information.html#GUID-0F9EB85D-4610-4EDF-89C2-4916A0E7AC87 (18)https://docs.oracle.com/en/database/oracle/oracle-database/19/dblic/Licensing-Information.html#GUID-0F9EB85D-4610-4EDF-89C2-4916A0E7AC87 (19)