Oracle8i SQL Reference Release 3 (8.1.7) Part Number A85397-01 |
|
SQL Statements:
CREATE SYNONYM to DROP ROLLBACK SEGMENT, 25 of 31
Use the DROP
OPERATOR
statement to drop a user-defined operator.
See Also:
|
The operator must be in your schema or you must have the DROP
ANY
OPERATOR
system privilege.
schema
Specify the schema containing the operator. If you omit schema
, Oracle assumes the operator is in your own schema.
operator
Specify the name of the operator to be dropped.
FORCE
Specify FORCE
to drop the operator even if it is currently being referenced by one or more schema objects (indextypes, packages, functions, procedures, and so on), and marks those dependent objects INVALID
. Without FORCE
, you cannot drop an operator if any schema objects reference it.
DROP
OPERATOR
Example
The following statement drops the operator merge
:
DROP OPERATOR ordsys.merge;
Because the FORCE
clause is not specified, this operation will fail if any of the bindings of this operator are referenced by an indextype.
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|