日期:2015-06-28 00:00:00 来源: IT猫扑网
SQLPLUS 以管理员(sys)登陆数据库
#sqlplus '/as sysdba'
创建临时表空间
create temporary tablespace mven_temp
tempfile '/opt/oracle/oradata/mven/mven_temp.dbf'
size 128m;
创建数据表空间
create tablespace mven
logging
datafile '/opt/oracle/oradata/mven/mven.dbf'
size 2048m;
创建用户并指定表空间
create user mven identified by OracleUserMven
default tablespace mven
temporary tablespace mven_temp;
给用户授予权限
grant connect,resource to mven;
相关文章
相关下载
网友评论