Unix and Linux Discussions Tagged with conversion |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
13 |
70,136 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
8,187 |
UNIX for Advanced & Expert Users |
|
|
|
12 |
8,609 |
UNIX for Advanced & Expert Users |
|
|
|
8 |
13,152 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,837 |
Shell Programming and Scripting |
|
|
|
3 |
82,013 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
7,393 |
Shell Programming and Scripting |
|
|
|
2 |
1,316 |
Shell Programming and Scripting |
|
|
|
7 |
4,160 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
4,869 |
Shell Programming and Scripting |
|
|
|
2 |
2,372 |
Shell Programming and Scripting |
|
|
|
6 |
1,886 |
Shell Programming and Scripting |
|
|
|
6 |
2,656 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
3,678 |
Shell Programming and Scripting |
|
|
|
3 |
3,256 |
Shell Programming and Scripting |
|
|
|
6 |
21,760 |
Shell Programming and Scripting |
|
|
|
2 |
3,140 |
Shell Programming and Scripting |
|
|
|
0 |
4,628 |
Programming |
|
|
|
3 |
2,989 |
Shell Programming and Scripting |
|
|
|
3 |
5,447 |
Shell Programming and Scripting |
|
|
|
14 |
8,382 |
Shell Programming and Scripting |
|
|
|
0 |
1,559 |
UNIX and Linux RSS News |
|
|
|
0 |
1,554 |
UNIX and Linux RSS News |
|
|
|
0 |
2,079 |
Software Releases - RSS News |
|
|
|
1 |
23,402 |
Shell Programming and Scripting |
|
|
|
5 |
4,768 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
9,149 |
Shell Programming and Scripting |
|
|
|
0 |
2,447 |
Programming |
|
|
|
1 |
4,023 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
16,876 |
Programming |
|
|
|
5 |
50,967 |
Programming |
|
|
|
2 |
4,881 |
Filesystems, Disks and Memory |
|
|
|
1 |
2,789 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
9,026 |
IP Networking |
|
|
|
2 |
3,860 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
14,979 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,830 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
8,321 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
4,275 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
28,490 |
UNIX for Dummies Questions & Answers |
ALTER
CONVERSION(7) PostgreSQL 9.2.7 Documentation ALTER CONVERSION(7)
NAME
ALTER_CONVERSION - change the definition of a conversion
SYNOPSIS
ALTER CONVERSION name RENAME TO new_name
ALTER CONVERSION name OWNER TO new_owner
ALTER CONVERSION name SET SCHEMA new_schema
DESCRIPTION
ALTER CONVERSION changes the definition of a conversion.
You must own the conversion to use ALTER CONVERSION. 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 conversion's schema. (These restrictions enforce that altering the owner doesn't do
anything you couldn't do by dropping and recreating the conversion. However, a superuser can alter ownership of any conversion anyway.)
PARAMETERS
name
The name (optionally schema-qualified) of an existing conversion.
new_name
The new name of the conversion.
new_owner
The new owner of the conversion.
new_schema
The new schema for the conversion.
EXAMPLES
To rename the conversion iso_8859_1_to_utf8 to latin1_to_unicode:
ALTER CONVERSION iso_8859_1_to_utf8 RENAME TO latin1_to_unicode;
To change the owner of the conversion iso_8859_1_to_utf8 to joe:
ALTER CONVERSION iso_8859_1_to_utf8 OWNER TO joe;
COMPATIBILITY
There is no ALTER CONVERSION statement in the SQL standard.
SEE ALSO
CREATE CONVERSION (CREATE_CONVERSION(7)), DROP CONVERSION (DROP_CONVERSION(7))
PostgreSQL 9.2.7 2014-02-17 ALTER CONVERSION(7)