oracle创建用户

创建用户指定表空间
create user global identified by global default tablespace ODPS
给global用户授予权限 
grant connect,resource to global;
grant dba to global;
为用户在表空间赋予建表的权限

alter user dcmfile quota unlimited on dcmext_data;
原文地址:https://www.cnblogs.com/zhanglin123/p/14768661.html