Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

drop_group(7) [centos man page]

DROP 
GROUP(7) PostgreSQL 9.2.7 Documentation DROP GROUP(7) NAME
DROP_GROUP - remove a database role SYNOPSIS
DROP GROUP [ IF EXISTS ] name [, ...] DESCRIPTION
DROP GROUP is now an alias for DROP ROLE (DROP_ROLE(7)). COMPATIBILITY
There is no DROP GROUP statement in the SQL standard. SEE ALSO
DROP ROLE (DROP_ROLE(7)) PostgreSQL 9.2.7 2014-02-17 DROP GROUP(7)

Check Out this Related Man Page

ALTER 
GROUP(7) PostgreSQL 9.2.7 Documentation ALTER GROUP(7) NAME
ALTER_GROUP - change role name or membership SYNOPSIS
ALTER GROUP group_name ADD USER user_name [, ... ] ALTER GROUP group_name DROP USER user_name [, ... ] ALTER GROUP group_name RENAME TO new_name DESCRIPTION
ALTER GROUP changes the attributes of a user group. This is an obsolete command, though still accepted for backwards compatibility, because groups (and users too) have been superseded by the more general concept of roles. The first two variants add users to a group or remove them from a group. (Any role can play the part of either a "user" or a "group" for this purpose.) These variants are effectively equivalent to granting or revoking membership in the role named as the "group"; so the preferred way to do this is to use GRANT(7) or REVOKE(7). The third variant changes the name of the group. This is exactly equivalent to renaming the role with ALTER ROLE (ALTER_ROLE(7)). PARAMETERS
group_name The name of the group (role) to modify. user_name Users (roles) that are to be added to or removed from the group. The users must already exist; ALTER GROUP does not create or drop users. new_name The new name of the group. EXAMPLES
Add users to a group: ALTER GROUP staff ADD USER karl, john; Remove a user from a group: ALTER GROUP workers DROP USER beth; COMPATIBILITY
There is no ALTER GROUP statement in the SQL standard. SEE ALSO
GRANT(7), REVOKE(7), ALTER ROLE (ALTER_ROLE(7)) PostgreSQL 9.2.7 2014-02-17 ALTER GROUP(7)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

What does this statement do?

Hi, What does this line do in bash? MAILDROP_GROUP="@@"; Is this just assigning a string? or does it have special meaning? Thanks in advance. Wilsonee (3 Replies)
Discussion started by: wilsonee
3 Replies