oracle创建表空间,用户授权

create tablespace tcupps
datafile 'd:\tcupps.dbf' 
size 1024m autoextend on;

create user mptest 
identified by "mptest"
default tablespace "tcupps"
quota unlimited on "tcupps";

grant dba to mptest;

conn mptest/mptest;
commit;

猜你喜欢

转载自zliguo.iteye.com/blog/2182580