1.创建用户
如:
create user  imuse203
identified by  imuse203
default tablespace  IMUSE01
temporary tablespace  IMUSE01_TMP
2.修改用户
将imuse203的口令改为hello:
 alter user imuse203 identified by hello;

将imuse203的缺省表空间改为IMUSE02:
 alter user imuse203 default tablespace IMUSE02;

将imuse203的临时表空间改为IMUSE02_TMP:
 alter user imuse203 tempory tablespace IMUSE02_TMP;
3.删除用户
删除用户的命令为:
DROP USER 用户名 [CASCADE]
若不使用CASCADE选项,则必须在该用户的所有实体都删除之后,才能删除该用户。使用CASCADE后,则不论用户实体有多大,都一并删除。