Oracle® TimesTen In-Memory Database SQL Reference Release 11.2.1 Part Number E13070-03 |
|
|
View PDF |
The DROP USER statement removes a user from the database.
Required privilege
ADMIN
SQL syntax
DROP USER user
Parameters
The DROP USER statement has the parameter:
Parameter | Description |
---|---|
user |
Name of the user that is being removed from the database. The user must first have been introduced to the TimesTen database by a CREATE USER statement. |
Description
Before you can drop a user:
The user must exist in the database.
You must drop objects that the user owns.
Examples
Remove user terry
from the database:
DROP USER terry; User dropped.
See also