`
onlydo
  • 浏览: 165734 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

创建表空间

阅读更多
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;
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics