首页 > 数据库技术 > 详细

Oracle 创建用户,表空间

时间:2014-09-01 17:28:43      阅读:351      评论:0      收藏:0      [点我收藏+]

1.首先,创建(新)用户:
create user username identified by password;
username:新用户名的用户名
password: 新用户的密码
也可以不创建新用户,而仍然用以前的用户,如:继续利用scott用户

2.创建表空间:
create tablespace tablespacename datafile ‘d:\data.dbf‘ size xxxm;
tablespacename:表空间的名字
d:\data.dbf‘:表空间的存储位置
xxx表空间的大小,m单位为兆(M)

3.将空间分配给用户:
alert user username default tablespace tablespacename;
将名字为tablespacename的表空间分配给username

4.给用户授权:
grant create session,create table,unlimited tablespace to username;

5.然后再以楼主自己创建的用户登录,登录之后创建表即可。
conn username/password;

/*

create tablespace OnlineVisaSystem_tableSapce logging datafile ‘D:\OnlineVisaSystem.dbf‘ size 10000m autoextend on next 100m maxsize 20048m extent management local;

create user OnlineVisaSystem identified by DWJD2014 default tablespace OnlineVisaSystem_tableSapce temporary tablespace temp;

grant connect, resource, dba to OnlineVisaSystem;

commit;
*/

Oracle 创建用户,表空间

原文:http://www.cnblogs.com/lzjlv/p/3949405.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!