使用具有 DBA 权限的 Linux 用户登陆 Oracle 服务器
sqlplus / as sysdba
create user {userName} identified by {password} default tablespace {tablespaceName} temporary tablespace {temporaryName} profile DEFAULT;
grant dba to {username};
commit;
userName: 用户名
password: 密码
tablespaceName: 表空间,比如 FEEL
temporaryName: 临时表空间,比如 TEMP