创建表空间
create
tablespace test
datafile 'd:\ORACLE90\oradata\test.dbf' size 50M
default storage (
initial 500k //
next 500k
min
extents 1 //存储区
max
extents unlimited
pctincrease 0 );
创建
用户名 密码create user
sklee identified by
sklee default tablespace test;
grant resource , connect to sklee; //给用户源文件 , 连接的权限
权限相关
grant dba to dding;--授予DBA权限
grant unlimited tablespace to dding;--授予不限制的表空间
grant select any table to dding;--授予查询任何表
grant select any dictionary to dding;