{"id":9801,"date":"2017-03-04T11:35:17","date_gmt":"2017-03-04T10:35:17","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/"},"modified":"2023-06-08T16:32:39","modified_gmt":"2023-06-08T14:32:39","slug":"is-your-dba_feature_usage_statistics-up-to-date","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/","title":{"rendered":"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date?"},"content":{"rendered":"<p><strong>By Mouhamadou Diaw<\/strong><\/p>\n<p>Last day we were doing a licensing review for a client. As many dbas may already know, this require to execute some oracle scripts at OS level and database level.<br \/>\nAmong these scripts we have the script options_packs_usage_statistics.sql (docId 1317265.1) which is an official oracle script to check the usage of separately licensed Oracle Database Options\/Management Packs<br \/>\nThis script is using the DBA_FEATURE_USAGE_STATISTICS table to retrieve info. And sometimes it may happen that data of this table are not recent.<br \/>\nOne important thing is that the DBA_FEATURE_USAGE_STATISTICS are based on the most recent sample in the column LAST_SAMPLE_DATE. In our case we got following results (outputs are truncated).<br \/>\n<code><br \/>\nSYSDATE            |<br \/>\n-------------------|<br \/>\n2017.02.17_13.36.44|<br \/>\n<\/code><br \/>\n<code><br \/>\nPRODUCT                        |LAST_SAMPLE_DATE   |<br \/>\n-------------------------------|-------------------|<br \/>\nActive Data Guard              |2014.01.02_13.37.53|<br \/>\nAdvanced Analytics             |2014.01.02_13.37.53|<br \/>\nAdvanced Compression           |2014.01.02_13.37.53|<br \/>\nAdvanced Security              |2014.01.02_13.37.53|<br \/>\nDatabase Vault                 |2014.01.02_13.37.53|<br \/>\nDiagnostics Pack               |2014.01.02_13.37.53|<br \/>\nLabel Security                 |2014.01.02_13.37.53|<br \/>\nOLAP                           |2014.01.02_13.37.53|<br \/>\nPartitioning                   |2014.01.02_13.37.53|<br \/>\nReal Application Clusters      |2014.01.02_13.37.53|<br \/>\nReal Application Testing       |2014.01.02_13.37.53|<br \/>\nTuning Pack                    |2014.01.02_13.37.53|<br \/>\n.Exadata                       |2014.01.02_13.37.53|<br \/>\n<\/code><br \/>\nIf we compare sysdate and the date of the last_sample_date, we can see that we have to manually refresh our DBA_FEATURE_USAGE_STATISTICS data.<br \/>\nOne way to do this is to run the procedure<br \/>\n<code><br \/>\nexec dbms_feature_usage_internal.exec_db_usage_sampling(SYSDATE);<br \/>\n<\/code><br \/>\nIn our case the procedure did not refresh our data despite the fact that there was any error and we received message that procedure was successfully executed.<br \/>\n<code><br \/>\nSQL&gt; exec dbms_feature_usage_internal.exec_db_usage_sampling(SYSDATE);<br \/>\nPL\/SQL procedure successfully completed.<br \/>\n<\/code><br \/>\n<code><br \/>\nSQL&gt; select max(last_sample_date) from dba_feature_usage_statistics order by 1;<br \/>\nMAX(LAST_<br \/>\n---------<br \/>\n02-JAN-14<br \/>\n<\/code><br \/>\nFollowing oracle document 1629485.1 we were able to refresh the last_sample_date using this ALTER SESSION<br \/>\n<code><br \/>\nSQL&gt; alter session set \"_SWRF_TEST_ACTION\"=53;<br \/>\nSession altered.<br \/>\n<\/code><br \/>\n<code><br \/>\nSQL&gt; alter session set NLS_DATE_FORMAT='DD\/MM\/YYYY HH24:MI:SS';<br \/>\nSession altered.<br \/>\n<\/code><br \/>\n<code><br \/>\nSQL&gt; select MAX(LAST_SAMPLE_DATE) from dba_feature_usage_statistics;<br \/>\nMAX(LAST_SAMPLE_DAT<br \/>\n-------------------<br \/>\n16\/02\/2017 13:44:46<br \/>\n<\/code><br \/>\nHope this article may help<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By Mouhamadou Diaw Last day we were doing a licensing review for a client. As many dbas may already know, this require to execute some oracle scripts at OS level and database level. Among these scripts we have the script options_packs_usage_statistics.sql (docId 1317265.1) which is an official oracle script to check the usage of separately [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[1038,1039],"type_dbi":[],"class_list":["post-9801","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring","tag-dba_feature_usage_statistics","tag-oracle-licensing"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Is your DBA_FEATURE_USAGE_STATISTICS up-to-date? - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date?\" \/>\n<meta property=\"og:description\" content=\"By Mouhamadou Diaw Last day we were doing a licensing review for a client. As many dbas may already know, this require to execute some oracle scripts at OS level and database level. Among these scripts we have the script options_packs_usage_statistics.sql (docId 1317265.1) which is an official oracle script to check the usage of separately [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-03-04T10:35:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-08T14:32:39+00:00\" \/>\n<meta name=\"author\" content=\"Oracle Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oracle Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date?\",\"datePublished\":\"2017-03-04T10:35:17+00:00\",\"dateModified\":\"2023-06-08T14:32:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/\"},\"wordCount\":215,\"commentCount\":0,\"keywords\":[\"dba_feature_usage_statistics\",\"Oracle licensing\"],\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/\",\"name\":\"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date? - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2017-03-04T10:35:17+00:00\",\"dateModified\":\"2023-06-08T14:32:39+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\",\"name\":\"Oracle Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"caption\":\"Oracle Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date? - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/","og_locale":"en_US","og_type":"article","og_title":"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date?","og_description":"By Mouhamadou Diaw Last day we were doing a licensing review for a client. As many dbas may already know, this require to execute some oracle scripts at OS level and database level. Among these scripts we have the script options_packs_usage_statistics.sql (docId 1317265.1) which is an official oracle script to check the usage of separately [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/","og_site_name":"dbi Blog","article_published_time":"2017-03-04T10:35:17+00:00","article_modified_time":"2023-06-08T14:32:39+00:00","author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date?","datePublished":"2017-03-04T10:35:17+00:00","dateModified":"2023-06-08T14:32:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/"},"wordCount":215,"commentCount":0,"keywords":["dba_feature_usage_statistics","Oracle licensing"],"articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/","url":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/","name":"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date? - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-03-04T10:35:17+00:00","dateModified":"2023-06-08T14:32:39+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/is-your-dba_feature_usage_statistics-up-to-date\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Is your DBA_FEATURE_USAGE_STATISTICS up-to-date?"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee","name":"Oracle Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","caption":"Oracle Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9801","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=9801"}],"version-history":[{"count":1,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9801\/revisions"}],"predecessor-version":[{"id":25694,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9801\/revisions\/25694"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=9801"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=9801"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=9801"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=9801"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}