Oracle9i SQL Reference
Release 1 (9.0.1)

Part Number A90125-01
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback

Go to previous page Go to beginning of chapter Go to next page

SQL Statements:
DROP SEQUENCE to ROLLBACK, 9 of 20


DROP USER

Purpose

Use the DROP USER statement to remove a database user and optionally remove the user's objects.

See Also:

  • CREATE USER for information on creating a user

  • ALTER USER for information on modifying the definition of a user

 

Prerequisites

You must have the DROP USER system privilege.

Syntax

drop_user::=


Text description of statements_913a.gif follows
Text description of drop_user

Keywords and Parameters

user

Specify the user to be dropped. Oracle does not drop users whose schemas contain objects unless you specify CASCADE or unless you first explicitly drop the user's objects.

CASCADE

Specify CASCADE to drop all objects in the user's schema before dropping the user. You must specify this clause to drop a user whose schema contains any objects.

Examples

DROP USER Example

If user Sidney's schema contains no objects, you can drop sidney by issuing the statement:

DROP USER sidney; 

If Sidney's schema contains objects, you must use the CASCADE clause to drop sidney and the objects:

DROP USER sidney CASCADE; 

Go to previous page Go to beginning of chapter Go to next page
Oracle
Copyright © 1996-2001, Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback