创建表空间语句 解析

创建用户 解析

给用户赋权权限

--创建表空间和用户
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;
本文介绍如何在Oracle数据库中创建表空间和用户,并为用户分配资源权限。包括创建永久表空间及临时表空间的具体步骤,以及创建用户并设置默认表空间与临时表空间的方法。
3万+

被折叠的 条评论
为什么被折叠?



