首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

创造表空间

2012-09-15 
创建表空间create temporary tablespace xyzqinfo_temp tempfile D:\oracle\data\xyzqinfo_temp01.dbf s

创建表空间
create temporary tablespace xyzqinfo_temp
tempfile 'D:\oracle\data\xyzqinfo_temp01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;

create tablespace xyzqinfo_data
logging
datafile 'D:\oracle\data\xyzqinfo_data01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;


create user username identified by password
default tablespace xyzqinfo_data
temporary tablespace xyzqinfo_temp;

grant dba to username;

grant connect,resource to username;

热点排行