PLSQL创建表空间,创建用户,添加权限

create tablespace text4  
datafile 'E:\tablespace4\obu1.dbf' size 6000M



create user obu2 identified by obu2 default tablespace text4 quota 500m on users;

grant all privileges to obu2;

你可能感兴趣的:(PLSQL创建表空间,创建用户,添加权限)