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 
LANGUAGE(7) SQL Commands DROP LANGUAGE(7) NAME
DROP LANGUAGE - remove a user-defined procedural language SYNOPSIS
DROP [ PROCEDURAL ] LANGUAGE name [ CASCADE | RESTRICT ] INPUTS name The name of an existing procedural language. For backward compatibility, the name may be enclosed by single quotes. CASCADE Automatically drop objects that depend on the language (such as functions in the language). RESTRICT Refuse to drop the language if there are any dependent objects. This is the default. OUTPUTS DROP LANGUAGE This message is returned if the language is successfully dropped. ERROR: Language "name" doesn't exist This message occurs if a language called name is not found in the database. DESCRIPTION
DROP PROCEDURAL LANGUAGE will remove the definition of the previously registered procedural language called name. NOTES The DROP PROCEDURAL LANGUAGE statement is a PostgreSQL language extension. Refer to CREATE LANGUAGE [create_language(7)] for information on how to create procedural languages. USAGE
This command removes the PL/Sample language: DROP LANGUAGE plsample; COMPATIBILITY
SQL92 There is no DROP PROCEDURAL LANGUAGE in SQL92. SQL - Language Statements 2002-11-22 DROP LANGUAGE(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