Oracle9i SQL Reference Release 2 (9.2) Part Number A96540-02 |
|
|
View PDF |
Use the DROP
DIMENSION
statement to remove the named dimension.
See Also:
|
The dimension must be in your own schema or you must have the DROP
ANY
DIMENSION
system privilege to use this statement.
drop_dimension::=
Specify the name of the schema in which the dimension is located. If you omit schema, Oracle assumes the dimension is in your own schema.
Specify the name of the dimension you want to drop. The dimension must already exist.
This example drops the sh.customers_dim
dimension:
DROP DIMENSION customers_dim;
See Also:
"Creating a Dimension: Example" and "Modifying a Dimension: Examples" for examples of creating and modifying this dimension |