Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

drop_group(7) [redhat man page]

DROP 
GROUP(7) SQL Commands DROP GROUP(7) NAME
DROP GROUP - remove a user group SYNOPSIS
DROP GROUP name INPUTS name The name of an existing group. OUTPUTS DROP GROUP The message returned if the group is successfully deleted. DESCRIPTION
DROP GROUP removes the specified group from the database. The users in the group are not deleted. Use CREATE GROUP [create_group(7)] to add new groups, and ALTER GROUP [alter_group(7)] to change a group's membership. USAGE
To drop a group: DROP GROUP staff; COMPATIBILITY
SQL92 There is no DROP GROUP in SQL92. SQL - Language Statements 2002-11-22 DROP GROUP(7)

Check Out this Related Man Page

DROP 
DATABASE(7) SQL Commands DROP DATABASE(7) NAME
DROP DATABASE - remove a database SYNOPSIS
DROP DATABASE name INPUTS name The name of an existing database to remove. OUTPUTS DROP DATABASE This message is returned if the command is successful. DROP DATABASE: cannot be executed on the currently open database You cannot be connected to the database you are about to remove. Instead, connect to template1 or any other database and run this command again. DROP DATABASE: may not be called in a transaction block You must finish the transaction in progress before you can call this command. DESCRIPTION
DROP DATABASE removes the catalog entries for an existing database and deletes the directory containing the data. It can only be executed by the database owner (usually the user that created it). DROP DATABASE cannot be undone. Use it with care! NOTES This command cannot be executed while connected to the target database. Thus, it might be more convenient to use the shell script dropdb [dropdb(1)], which is a wrapper around this command, instead. Refer to CREATE DATABASE [create_database(7)] for information on how to create a database. COMPATIBILITY
SQL92 DROP DATABASE statement is a PostgreSQL language extension; there is no such command in SQL92. SQL - Language Statements 2002-11-22 DROP DATABASE(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