Syntax for altering User
Altering user syntax
ALTER USER coin_admin
: You are altering an existing user named coin_admin
.
IDENTIFIED BY coin_admin
: The new password for this user will be the same as the username.
DEFAULT TABLESPACE users
: Changes the user's default tablespace to users.
TEMPORARY TABLESPACE temp
: Changes a user's temporary tablespace to temp.
PROFILE default
: Changes a user's profile to the default.
QUOTA 5000K ON users
: Changes the user's quota on the users tablespace to 5000K.
QUOTA 10M tools
: Changes the user's quota on the tools tablespace to 10 megabytes.
QUOTA UNLIMITED ON temp
: Gives the user an unlimited quota on the temp tablespace.