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

ORACLE 创建表空间、用户、授权

时间:2014-05-03 17:37:06      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:oracle

1、创建表空间

create tablespace TEST
logging
datafile ‘e:\app\administrator\oradata\orcl\TEST.dbf‘
size 100M
autoextend on
next 100M maxsize 4096M
extent management local;

2、创建用户并指定表空间

create use testuser identified by password
default tablespace TEST
temporary tablespace temp;

3、授权

grant connect  to testuser;
grant dba to testuser;
grant role to testuser;




ORACLE 创建表空间、用户、授权,布布扣,bubuko.com

ORACLE 创建表空间、用户、授权

标签:oracle

原文地址:http://blog.csdn.net/sheng__sheng/article/details/24905487

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