创建表空间和为用户以及为用户赋权限

来源:互联网 发布:七周成为数据分析师14 编辑:程序博客网 时间:2024/06/08 16:43

 create tablespace mypay
datafile '/oradata/ora01.dbf' size 2000M,
             '/oradata/ora02.dbf' size 2000M
 AUTOEXTEND OFF;

create user mypayidentified by mypaydefault tablespace mypay;

grant connect,resource to mge;

原创粉丝点击