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

Oracle如何创建表空间

时间:2014-06-11 13:00:15      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:ext      table   oracle   file   io   

create user frame identified by tiger;

grant create session to frame; 

grant create table to frame; 

grant create tablespace to frame; 

grant create view to frame; 

grant dba to frame;

alter user  frame default role DBA;

create tablespace framework  

datafile ‘D:/oracleData/framework.dbf‘  

size 500M  

autoextend on next 5M maxsize 3000M; 

alter user frame quota unlimited on framework;

Oracle如何创建表空间,布布扣,bubuko.com

Oracle如何创建表空间

标签:ext      table   oracle   file   io   

原文地址:http://www.cnblogs.com/huchaoheng/p/3772562.html

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