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

创建独立的表空间:

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;

你可能感兴趣的:(superMap创建数据库型数据源的创建过程)