创建表空间语句 解析
创建用户 解析
给用户赋权权限
--创建表空间和用户
create tablespace cboms
datafile 'D:\database\oracle_tablespace\jnrcb\cboms.dbf'
size 50M autoextend on next 50M;
create temporary tablespace cboms_temp
tempfile 'D:\database\oracle_tablespace\jnrcb\cboms_temp.dbf'
size 50M autoextend on next 50M;
create user cboms identified by cboms
default tablespace cboms
temporary tablespace cboms_temp;
grant connect,resource,dba to cboms;