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

Oracle11g创建表空间语句

时间:2018-11-16 10:29:09      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:max   --   oracle表   tables   tab   auto   tempfile   nec   rac   

在plsql工具中执行以下语句,可建立Oracle表空间。 ----转发

 

/*分为四步 */
/*第1步:创建临时表空间  */
create temporary tablespace yuhang_temp 
tempfile ‘D:\oracledata\yuhang_temp.dbf‘ 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
/*第2步:创建数据表空间  */
create tablespace yuhang_data  
logging  
datafile ‘D:\oracledata\yuhang_data.dbf‘ 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
/*第3步:创建用户并指定表空间  */
create user yuhang identified by yuhang  
default tablespace yuhang_data  
temporary tablespace yuhang_temp;  
 
/*第4步:给用户授予权限  */
grant connect,resource,dba to yuhang;

Oracle11g创建表空间语句

标签:max   --   oracle表   tables   tab   auto   tempfile   nec   rac   

原文地址:https://www.cnblogs.com/yss669/p/9967441.html

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