首页 > 数据库技术 > 详细

oracle 表空间 用户

时间:2017-05-01 10:53:33      阅读:325      评论:0      收藏:0      [点我收藏+]

-- create user mapecun identified by "accp";
--alter user 用户名 quota unlimited on 表空间;
--alter user mapecun quota unlimited on USERS;
--grant create sequence to mapecun;
/** grant create session to mapecun;
grant create table to mapecun;
grant create tablespace to mapecun;
grant create view to mapecun;

create tablespace DEMOSPACE
datafile ‘E:/oracle_tablespaces/DEMOSPACE_TBSPACE.dbf‘
size 150M
autoextend on next 5M maxsize 300M;

*/

-- 用户权限
--授予用户使用表空间的权限:
--alter user mapecun quota unlimited on DEMOSPACE;
/**
create table EASYBUY_SHOP
(
es_id NUMBER not null,
es_ep_file_name NVARCHAR2(30),
es_ep_name NVARCHAR2(30),
es_ep_price NUMBER,
es_eod_quantity NUMBER,
es_ep_stock NUMBER,
es_ep_id NUMBER,
es_eu_user_id NVARCHAR2(30),
es_valid NUMBER
)
tablespace DEMOSPACE
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);


alter table EASYBUY_SHOP
add primary key (ES_ID)
using index
tablespace DEMOSPACE
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);

oracle 表空间 用户

原文:http://www.cnblogs.com/mapecun/p/6791301.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!