top of page

How To Verify Which Database Features are Used

  • Writer: Hanh Nguyen
    Hanh Nguyen
  • Oct 4, 2015
  • 1 min read

Goal

This article explains how you can check which options or features are used in the database. This is particularly useful for licensing purposes or when you want to de-install a certain option.

Solution

This can be achieved through the DBA_FEATURE_USAGE_STATISTICS view. This view will list the feature usage on a per patchset basis. So the combination of feature name and version is unique.

Typically one can verify the features used using the following query:

select * from DBA_FEATURE_USAGE_STATISTICS where detected_usages > 0 order by name, version;

To get a list of options that are not in use:

select * from DBA_FEATURE_USAGE_STATISTICS where detected_usages = 0 order by name, version;

For a more detailed report on the option details and their usages, please see

Recent Posts

See All

Comments


bottom of page