oracle 表空间 用户
-- 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
);
轉載于:https://www.cnblogs.com/mapecun/p/6791301.html
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的oracle 表空间 用户的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 做梦梦到鸡叫是什么意思
- 下一篇: 【KMP模板】简单写个KMP~