Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

drop_operator_class(7) [redhat man page]

DROP OPERATOR 
CLASS(7) SQL Commands DROP OPERATOR CLASS(7) NAME
DROP OPERATOR CLASS - remove a user-defined operator class SYNOPSIS
DROP OPERATOR CLASS name USING access_method [ CASCADE | RESTRICT ] INPUTS name The name (optionally schema-qualified) of an existing operator class. access_method The name of the index access method the operator class is for. CASCADE Automatically drop objects that depend on the operator class. RESTRICT Refuse to drop the operator class if there are any dependent objects. This is the default. OUTPUTS DROP OPERATOR CLASS The message returned if the command is successful. DESCRIPTION
DROP OPERATOR CLASS drops an existing operator class from the database. To execute this command you must be the owner of the operator class. NOTES The DROP OPERATOR CLASS statement is a PostgreSQL language extension. Refer to CREATE OPERATOR CLASS [create_operator_class(7)] for information on how to create operator classes. USAGE
Remove B-tree operator class widget_ops: DROP OPERATOR CLASS widget_ops USING btree; This command will not execute if there are any existing indexes that use the operator class. Add CASCADE to drop such indexes along with the operator class. COMPATIBILITY
SQL92 There is no DROP OPERATOR CLASS in SQL92. SQL - Language Statements 2002-11-22 DROP OPERATOR CLASS(7)

Check Out this Related Man Page

DROP OPERATOR 
FAMILY(7) SQL Commands DROP OPERATOR FAMILY(7) NAME
DROP OPERATOR FAMILY - remove an operator family SYNOPSIS
DROP OPERATOR FAMILY [ IF EXISTS ] name USING index_method [ CASCADE | RESTRICT ] DESCRIPTION
DROP OPERATOR FAMILY drops an existing operator family. To execute this command you must be the owner of the operator family. DROP OPERATOR FAMILY includes dropping any operator classes contained in the family, but it does not drop any of the operators or functions referenced by the family. If there are any indexes depending on operator classes within the family, you will need to specify CASCADE for the drop to complete. PARAMETERS
IF EXISTS Do not throw an error if the operator family does not exist. A notice is issued in this case. name The name (optionally schema-qualified) of an existing operator family. index_method The name of the index access method the operator family is for. CASCADE Automatically drop objects that depend on the operator family. RESTRICT Refuse to drop the operator family if any objects depend on it. This is the default. EXAMPLES
Remove the B-tree operator family float_ops: DROP OPERATOR FAMILY float_ops USING btree; This command will not succeed if there are any existing indexes that use operator classes within the family. Add CASCADE to drop such indexes along with the operator family. COMPATIBILITY
There is no DROP OPERATOR FAMILY statement in the SQL standard. SEE ALSO
ALTER OPERATOR FAMILY [alter_operator_family(7)], CREATE OPERATOR FAMILY [create_operator_family(7)], ALTER OPERATOR CLASS [alter_opera- tor_class(7)], CREATE OPERATOR CLASS [create_operator_class(7)], DROP OPERATOR CLASS [drop_operator_class(7)] SQL - Language Statements 2010-05-14 DROP OPERATOR FAMILY(7)
Man Page

13 More Discussions You Might Find Interesting

1. Programming

create object

can we create an parametrize object to a class with the help of new operator if yes then how (0 Replies)
Discussion started by: ramneek
0 Replies

2. UNIX for Dummies Questions & Answers

Error Core Dumb

Hi all, I've problem with the Data centre operator. Some of the user(operator) when they try to execute one of the command it return error message "Core Dumb". Could anybody kindly please help me to deal with this. :confused: Regards. (2 Replies)
Discussion started by: gagasan_makmur
2 Replies

3. Shell Programming and Scripting

! operator in variable

Can any body kindly tell me the purpose of ! operator in the following expression: y=${!x} Actually when i execute this statement on my solaris 10 terminal, i get empty output. (1 Reply)
Discussion started by: mmunir
1 Replies

4. Shell Programming and Scripting

changing file name not the file extention

Hello experts, I need to solve the problem stated below: 1.have to search for " operator.java" file and rename it to as OPERATOR.java 2.Also I have to change the following line inside the file: public class operator----->public class OPERATOR the only thing that i can think is... (2 Replies)
Discussion started by: mlhazan
2 Replies

5. Programming

C++ Optr Overloading

Hi All, In C++ one operator can be overloaded, but it can't be overloaded by it's own derieved class Please let me know operator. Thanks, Naga:cool: (1 Reply)
Discussion started by: Nagapandi
1 Replies

6. Shell Programming and Scripting

Search from file and display

Dear All I had input file as mention below. Now from that file i want to search string "FAULT CODES CLASS" and want to display contain again its. ( ie. 1B4 --4 is in next line. ). Kindly let me know the possible ways. <rxmfp:mo=RXOTX-46-5 ; ... (3 Replies)
Discussion started by: jaydeep_sadaria
3 Replies

7. Solaris

Extract substring from a string

i have srtring i.e. "NAME,CLASS,AGE" (length of string is not constant) and from this string i've extract each word delimited by "," (comma). INPUT: "NAME,CLASS,AGE" OUTPUT: NAME CLASS AGE how can i do that? i have tried some string manipulation function like... (5 Replies)
Discussion started by: jadoo_c2
5 Replies

8. UNIX for Dummies Questions & Answers

Yes and No Statements issue ?

Ive asked this question in the past and got perfect help but of course I wanted to complicate it by adding a twist. Here is what I am shooting for something like this echo "hello Dude" echo "did your day suck" echo "Y or N" read answer if ; then OUTPUT OUTPUT fi... (8 Replies)
Discussion started by: Producer
8 Replies

9. Programming

Help with message class

May I know how to create message class in order to store input data from the command line, so that the output will come from this class? (4 Replies)
Discussion started by: eel
4 Replies

10. Shell Programming and Scripting

How to write If statement using && and operator in Unix

Hi What is the syntax for if statement using && and || operator? if && ] || here its giving me an error to this if statement any suggestion?? (2 Replies)
Discussion started by: Avi
2 Replies

11. Shell Programming and Scripting

File operator command

Hey all, I not able to find it what -n stand operator stands for. ] && print -u2 "ERROR: $*" could you please let me know why we are using -n in the code. (15 Replies)
Discussion started by: arun888
15 Replies

12. Shell Programming and Scripting

Like operator in IF statement

how can i use like operator in IF statement. Below is correct format, please guide if ; then CT_ACT_FILE_NAME=`echo FINACLE' else CT_ACT_FILE_NAME=`echo not listed' fi ---------- Post updated at 04:58 PM ---------- Previous update was at 04:56 PM ---------- Please use CODE... (6 Replies)
Discussion started by: rizwan.shaukat
6 Replies

13. Programming

C++ operator overloading error

hi, I defined my own String class and overloaded the output operator with friend ostream& operator<<(ostream& os, const myString& str); //overloads the << operator so it can be used to output values of type myString which works fine. Until I try to execute the following statement: // +... (6 Replies)
Discussion started by: milhan
6 Replies