Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

alter_operator_class(7) [suse man page]

ALTER OPERATOR 
CLASS(7) SQL Commands ALTER OPERATOR CLASS(7) NAME
ALTER OPERATOR CLASS - change the definition of an operator class SYNOPSIS
ALTER OPERATOR CLASS name USING index_method RENAME TO newname ALTER OPERATOR CLASS name USING index_method OWNER TO newowner DESCRIPTION
ALTER OPERATOR CLASS changes the definition of an operator class. You must own the operator class to use ALTER OPERATOR CLASS. To alter the owner, you must also be a direct or indirect member of the new owning role, and that role must have CREATE privilege on the operator class's schema. (These restrictions enforce that altering the owner doesn't do anything you couldn't do by dropping and recreating the operator class. However, a superuser can alter ownership of any operator class anyway.) PARAMETERS
name The name (optionally schema-qualified) of an existing operator class. index_method The name of the index method this operator class is for. newname The new name of the operator class. newowner The new owner of the operator class. COMPATIBILITY
There is no ALTER OPERATOR CLASS statement in the SQL standard. SEE ALSO
CREATE OPERATOR CLASS [create_operator_class(7)], DROP OPERATOR CLASS [drop_operator_class(7)], ALTER OPERATOR FAMILY [alter_operator_fam- ily(7)] SQL - Language Statements 2010-05-14 ALTER OPERATOR CLASS(7)

Check Out this Related Man Page

ALTER OPERATOR 
CLASS(7) PostgreSQL 9.2.7 Documentation ALTER OPERATOR CLASS(7) NAME
ALTER_OPERATOR_CLASS - change the definition of an operator class SYNOPSIS
ALTER OPERATOR CLASS name USING index_method RENAME TO new_name ALTER OPERATOR CLASS name USING index_method OWNER TO new_owner ALTER OPERATOR CLASS name USING index_method SET SCHEMA new_schema DESCRIPTION
ALTER OPERATOR CLASS changes the definition of an operator class. You must own the operator class to use ALTER OPERATOR CLASS. To alter the owner, you must also be a direct or indirect member of the new owning role, and that role must have CREATE privilege on the operator class's schema. (These restrictions enforce that altering the owner doesn't do anything you couldn't do by dropping and recreating the operator class. However, a superuser can alter ownership of any operator class anyway.) PARAMETERS
name The name (optionally schema-qualified) of an existing operator class. index_method The name of the index method this operator class is for. new_name The new name of the operator class. new_owner The new owner of the operator class. new_schema The new schema for the operator class. COMPATIBILITY
There is no ALTER OPERATOR CLASS statement in the SQL standard. SEE ALSO
CREATE OPERATOR CLASS (CREATE_OPERATOR_CLASS(7)), DROP OPERATOR CLASS (DROP_OPERATOR_CLASS(7)), ALTER OPERATOR FAMILY (ALTER_OPERATOR_FAMILY(7)) PostgreSQL 9.2.7 2014-02-17 ALTER OPERATOR CLASS(7)
Man Page

11 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. 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

3. BSD

Automatic class change

Hello! I have 5 servers running FreeBSD (6.0 - 7.0) and on each server I have about 800 user accounts. I created a new class in /etc/login.conf and now I want to change the class for each user. Do you have any ideea on how may I do this automaticaly? It is a little bit too much for me to use... (1 Reply)
Discussion started by: Sergiu-IT
1 Replies

4. 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

5. 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

6. 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

7. 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

8. Programming

C++ class definition with a member of the same class

Hi, i have a question about C++. Is it possible to declare a class with a member ot the same class? For example, a linked list or i want to convert this C code to C++ class (Elemento) typedef struct elemento { char name; char value; List<struct elemento> ltElementos; ... (7 Replies)
Discussion started by: pogdorica
7 Replies

9. 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

10. 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

11. 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