oracle创建库

淺唱寂寞╮ 提交于 2019-12-09 13:21:21

创建表空间

create tablespace TBS_DATA datafile '/u01/oradata/tbs_data01.dbf' size 16G autoextend off;
create tablespace TBS_DATA_IDX datafile '/u01/oradata/tbs_data_idx01.dbf' size 8G autoextend off;

创建用户

create user ora001 identified externally account unlock;
grant connect to ora001;
grant resource to ora001;

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!