Rem
Rem $Header: onevddet.sql 26-apr-2000.16:23:18 dthompso Exp $
Rem
Rem onevddet.sql
Rem
Rem  Copyright (c) Oracle Corporation 2000. All Rights Reserved.
Rem
Rem    NAME
Rem      onevddet.sql - dba$olap_descriptor_types
Rem
Rem    DESCRIPTION
Rem      Metadata types that descriptor can be applied to.
Rem
Rem    NOTES
Rem      
Rem
Rem    MODIFIED   (MM/DD/YY)
Rem    dthompso    04/26/00 - Initial Version
Rem    dthompso    01/00/00 - Created
Rem

CREATE OR REPLACE VIEW dba$olap_descriptor_types AS SELECT 
  cty.name descriptor_type
, ot.name entity_type
FROM
  cwm$classificationtype cty
, cwm$objecttype ot 
WHERE cty.name <> 'ORACLE_OLAP_CATALOG'
AND cty.irid = ot.classificationtype_irid
WITH READ ONLY
/