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

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

时间:2014-10-29 16:20:35      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:style   ar   sp   strong   div   on   art   log   bs   

1、创建表空间

create tablespace TEST 

logging

datafile ‘e:\app\administrator\oradata\orcl\TEST.dbf‘

size 100M

autoextend onnext 100M maxsize 4096Mextent 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 创建表空间、用户、授权

标签:style   ar   sp   strong   div   on   art   log   bs   

原文地址:http://www.cnblogs.com/mengfanrong/p/4059425.html

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