superMap创建数据库型数据源的创建过程

来源:互联网 发布:求生之路2lerp优化 编辑:程序博客网 时间:2024/06/05 05:35

创建独立的表空间:

create tablespace data_cs datafile 

'D:/tools/oradata/orcl/data_cs.dbf' size 200m autoextend on next 10m uniform size 256k;

创建用户:
create user cs identified by hdx default tablespace data_cs temporary tablespace TEMP profile default;

授予用户权限:
grant connect,resource to cs;

解锁用户:
alter user cs account unlock;
原创粉丝点击