【Oracle】创建用户

任务:
1)创建用户siebel,密码oracle
2)授予sse_role,tblo_role角色
3)siebel用户没有对system,sysaux的使用权限
4)默认表空间ts_users,无限制使用此表空间
5)默认临时表空间TMP_GRP
6)使用默认的profile
7)授予sse_role、tblo_role角色

操作过程:

create user siebel identified by oracle
default tablespace ts_users 
temporary tablespace tmp_grp
quota 0 on system
quota 0 on sysaux
quota unlimited on ts_users;

grant sse_role,tblo_role to siebel;
原文地址:https://www.cnblogs.com/NextAction/p/7366718.html