DROP GROUP

Name

DROP GROUP  --  Removes a user group from the database.

Synopsis

DROP GROUP name
  

Parameters

name

The sole parameter of this command is the name of the existing database you wish to drop.

Results

DROP GROUP

This message is displayed if the group is successfully removed.

Description

Use DROP GROUP to remove a group from the database you are working in. This command is independent of the DROP USER command; as such, the users within the group will not be rmoved from the database.

Examples

The following example demonstrates how to drop the sales group.

DROP GROUP sales;