码迷,mamicode.com
首页 > 数据库 > 详细

创建Oracle表空间和用户

时间:2017-09-28 16:48:21      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:default   rar   local   logs   efault   tables   resource   指定   ase   

create oracle tablespace and user

/*第1步:创建临时表空间 */
create temporary tablespace test_temp
tempfile e:\tablespace\test_temp.dbf
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
/*第2步:创建数据表空间  */
create tablespace test_data 
logging
datafile e:\tablespace\test_data.dbf
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
/*第3步:创建用户并指定表空间 */
create user username identified by 123456 default tablespace test_data temporary tablespace test_temp;
/*第4步:给用户授予权限  */
grant connect,resource,dba to username;

 or

create tablespace test_data datafile e:\tablespace\test_data.dbf size 800M  autoextend on;
alter tablespace test_data add datafile e:\tablespace\test_data_increased.dbf size 1G autoextend on;
create user username identified by 123456 default tablespace test_data;
grant connect,resource,dba to username;

 

and others

-- 修改密码
alter user username identified by 123456;

 

创建Oracle表空间和用户

标签:default   rar   local   logs   efault   tables   resource   指定   ase   

原文地址:http://www.cnblogs.com/glzgc/p/7607125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!