Skip Headers

Oracle9i SQL Reference
Release 2 (9.2)

Part Number A96540-02
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Feedback

Go to previous page Go to next page
View PDF

DROP ROLE

Purpose

Use the DROP ROLE statement to remove a role from the database. When you drop a role, Oracle revokes it from all users and roles to whom it has been granted and removes it from the database. User sessions in which the role is already enabled are not affected. However, no new user session can enable the role after it is dropped.

See Also:
  • CREATE ROLE for information on creating roles
  • ALTER ROLE for information on changing the authorization needed to enable a role
  • SET ROLE for information on disabling roles for the current session

Prerequisites

You must have been granted the role with the ADMIN OPTION or you must have the DROP ANY ROLE system privilege.

Syntax

drop_role::=

Text description of statements_8a.gif follows
Text description of drop_role


Semantics

role

Specify the name of the role to be dropped.

Example

Dropping a Role: Example

To drop the role dw_manager (created in "Creating a Role: Example"), issue the following statement:

DROP ROLE dw_manager;