Query: alter_schema
OS: centos
Section: 7
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ALTERSCHEMA(7) PostgreSQL 9.2.7 Documentation ALTER SCHEMA(7)NAMEALTER_SCHEMA - change the definition of a schemaSYNOPSISALTER SCHEMA name RENAME TO new_name ALTER SCHEMA name OWNER TO new_ownerDESCRIPTIONALTER SCHEMA changes the definition of a schema. You must own the schema to use ALTER SCHEMA. To rename a schema you must also have the CREATE privilege for the database. To alter the owner, you must also be a direct or indirect member of the new owning role, and you must have the CREATE privilege for the database. (Note that superusers have all these privileges automatically.)PARAMETERSname The name of an existing schema. new_name The new name of the schema. The new name cannot begin with pg_, as such names are reserved for system schemas. new_owner The new owner of the schema.COMPATIBILITYThere is no ALTER SCHEMA statement in the SQL standard.SEE ALSOCREATE SCHEMA (CREATE_SCHEMA(7)), DROP SCHEMA (DROP_SCHEMA(7)) PostgreSQL 9.2.7 2014-02-17 ALTER SCHEMA(7)
Related Man Pages |
---|
alter_collation(7) - centos |
alter_domain(7) - centos |
drop_schema(7) - centos |
alter_view(7) - suse |
create_schema(7) - suse |