创建用户报错,用户名必须以C##开头的解决办法:

alter session set "_ORACLE_SCRIPT"=true;

创建表空间
 

create tablespace clsoa datafile 'D:\app\oracle\oradata\orcl\clsoa.dbf' size 300M autoextend on next 50M maxsize unlimited;

创建用户

create user clsoa identified by clsoa default tablespace  clsoa temporary tablespace temp;

给用户赋权限

grant connect,resource,DBA to clsoa;

用PLSQL给用户设置密码,登录连接

更多推荐