Oracle CARTRIDGE
Version 21c

General Information
Library Note Morgan's Library Page Header
ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling complimentary technical Workshops on Database Security for the first 30 Oracle Database customers located anywhere in North America, EMEA, LATAM, or APAC that send an email to asra_us@oracle.com. Request a Workshop for your organization today.
Purpose Related to the Feature Usage Report procedures owned by SYS, uses the Manageability Monitor Process (MMON) which, by default, samples the data dictionary once a week to collect database feature usage and high-water mark (HWM) statistics for DICOM and MULTIMEDIA usage.
AUTHID DEFINER
Dependencies
DBA_TAB_COLS ORD_STR_LIST PLITBLM
ORD_NUM_LIST ORD_USAGE_RECS  
Documented No
First Available Not known
Security Model Owned by ORDSYS with execute granted to DBA
Source {ORACLE_HOME}/ord/im/admin/ordpkg.plb
Subprograms
 
DBMS_FEATURE_DICOM
Detects usage of DICOM cartridge.dbms_feature_dicom(
feature_boolean OUT NUMBER,
aux_count       OUT NUMBER,
feature_info    OUT CLOB);
set serveroutput on

DECLARE
 i NUMBER;
 j NUMBER;
 k CLOB;
BEGIN
  ordsys.cartridge.dbms_feature_dicom(i, j, k);
  dbms_output.put_line('1: ' || i);
  dbms_output.put_line('2: ' || j);
  dbms_output.put_line('3: ' || k);
END;
/
1: 0
2: 0
3: # usage of ORDDICOM: 0, # usage of dicom methods: 0
 
DBMS_FEATURE_MULTIMEDIA
Detects usage for Multimedia such as Audio, Image, and Video cartridge.dbms_feature_multimedia(
feature_boolean OUT NUMBER,
aux_count       OUT NUMBER,
feature_info    OUT CLOB);
set serveroutput on

DECLARE
 i NUMBER;
 j NUMBER;
 k CLOB;
BEGIN
  ordsys.cartridge.dbms_feature_multimedia(i, j, k);
  dbms_output.put_line('1: ' || i);
  dbms_output.put_line('2: ' || j);
  dbms_output.put_line('3: ' || k);
END;
/
1: 0
2: 0
3:

Related Topics
Built-in Functions
Built-in Packages
DBMS_FEATURE_USAGE
DBMS_FEATURE_USAGE_INTERNAL
DBMS_FEATURE_USAGE_REPORT
Feature Usage Procedures
What's New In 21c
What's New In 23c

Morgan's Library Page Footer
This site is maintained by Dan Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2023 Daniel A. Morgan All Rights Reserved
  DBSecWorx