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

oracle创建表空间,临时表空间,用户

时间:2016-03-23 20:15:35      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:oracle   用户   表空间   

create tablespace a_dat datafile ‘D:\oracle\product\10.2.0\oradata\orcl\a_dat.dbf‘ size 1024m autoextend on next 100m maxsize unlimited;

create temporary tablespace aa_dat_temp  

tempfile ‘D:\oracle\product\10.2.0\oradata\orcl\a_dat_temp.dbf‘ 

size 1024M autoextend on next 100m maxsize unlimited;


create user applyreleasesystem identified by applyreleasesystem

default tablespace a_dat

temporary tablespace a_dat_temp;


grant connect,resource,dba to applyreleasesystem;

grant create session,create table,unlimited tablespace to applyreleasesystem;


oracle创建表空间,临时表空间,用户

标签:oracle   用户   表空间   

原文地址:http://butcher36.blog.51cto.com/9315484/1754399

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