DBA Data[Home] [Help]

PACKAGE: OLAPSYS.CWM$EXCEPTIONS

Source


1 package cwm$exceptions as
2 
3 -- the function with this name cannot be found
4 function_not_found EXCEPTION;
5 -- the function with this usage id cannot be found
6 function_usage_not_found EXCEPTION;
7 -- the parameter with this name cannot be found
8 parameter_not_found EXCEPTION;
9 -- cube with this name does not exist in the database
10 cube_not_found EXCEPTION;
11 -- dimension with this name does not exist in the database
12 dimension_not_found EXCEPTION;
13 -- level with this name does not exist for this dimension in the database
14 level_not_found EXCEPTION;
15 -- hierarchy with this name does not exist for this dimension in the database
16 hierarchy_not_found EXCEPTION;
17 -- attribute with this name does not exist for this dimension in the database
18 attribute_not_found EXCEPTION;
19 -- the entity cannot be found in the database
20 entity_not_found EXCEPTION;
21 -- the table cannot be found in the database
22 table_not_found EXCEPTION;
23 -- the schema(user) does not exist in the database
24 schema_not_found EXCEPTION;
25 -- the descriptor identifier does not exist in the database
26 descriptor_undefined EXCEPTION;
27 -- the catalog identifier does not exist in the database
28 catalog_not_found EXCEPTION;
29 -- the parent catalog identifier does not exist in the database
30 parent_catalog_not_found EXCEPTION;
31 -- the element does not exist in catalog
32 element_does_not_exist EXCEPTION;
33 -- a descriptor type with that name not found
34 descriptor_type_not_found EXCEPTION;
35 -- a descriptor with this value already exists
36 descriptor_with_value_exists EXCEPTION;
37 -- fact table not defined for cube
38 fact_table_not_defined EXCEPTION;
39 -- column not found in fact table
40 column_not_found EXCEPTION;
41 -- measure with the same name is not found in the cube
42 measure_not_found EXCEPTION;
43 -- foreign key cannot be found for fact table
44 foreign_key_not_found EXCEPTION;
45 -- No column map exists for that column
46 column_map_not_found EXCEPTION;
47 -- the descriptor is undefined check list of valid descriptors
48 -- descriptor_undefined EXCEPTION;
49 -- name cannot be null or empty string ''
50 invalid_name EXCEPTION;
51 -- only COLUMN supported, invalid object type
52 invalid_object_type EXCEPTION;
53 -- The use between a dimension attribute and level attribute does not exist
54 attribute_use_not_found EXCEPTION;
55 -- the cube already exists, cannot create duplicate with same name
56 cube_already_exists EXCEPTION;
57 -- the attribute already exists, cannot create duplicate with same name
58 attribute_already_exists EXCEPTION;
59 attcol_map_cannot_be_changed EXCEPTION;
60 -- the measure already exists, cannot create duplicate with same name
61 measure_already_exists EXCEPTION;
62 -- the dimension cannot be added again to code use alias to ensure uniqueness
63 dimension_already_exist EXCEPTION;
64 -- a catalog with this name already exists in database
65 catalog_already_exists EXCEPTION;
66 -- cube is already defined in this catalog
67 element_already_exists EXCEPTION;
68 -- a descriptor type with the same name already exists
69 descriptor_type_already_exists EXCEPTION;
70 -- the method is not a recognized aggregation method
71 invalid_aggregation_method EXCEPTION;
72 -- drop the child catalogs first, or use cascade parameter
73 catalog_has_sub_catalogs EXCEPTION;
74 -- a recursive dependency would be created, this is not allowed
75 circular_dependency EXCEPTION;
76 -- entity type is not within the types supported for this release
77 entity_type_not_allowed EXCEPTION;
78 export_not_allowed EXCEPTION;
79 rebuild_failed EXCEPTION;
80 --
81 must_issue_ddl_to_change EXCEPTION;
82 
83 -- the descriptor type is currently in use elsewhere
84 descriptor_type_in_use EXCEPTION;
85 
86 -- user has no access privileges to perform the operation
87 no_access_privileges EXCEPTION;
88 -- username does not exist in database
89 user_not_found EXCEPTION;
90 -- dimension alias within cube dimension use is not unique
91 alias_not_unique EXCEPTION;
92 -- multiple uses of the same dimension exist within the cube and the
93 -- alias must be specified to qualify the particular use for the operation
94 multiple_uses_exist EXCEPTION;
95 -- A dependent cube dimension use must be defined within the same cube
96 use_not_in_same_cube EXCEPTION;
97 -- The dimension use within the cube specified does not exist
98 dimension_usage_not_found EXCEPTION;
99 -- feature not yet supported
100 unsupported_feature EXCEPTION;
101 -- the project cannot be found, this is bootstrap data
102 project_not_found EXCEPTION;
103 -- Failed to gain lock on metadata
104 failed_to_gain_lock EXCEPTION;
105 -- Cube is already mapped to a fact table but this operation tried to map
106 -- to a different fact table.
107 cannot_override_fact_mappings EXCEPTION;
108 -- OLAP instance has already been added to list
109 duplicate_instance EXCEPTION;
110 end;