--创建表空间
create tablespace yyf
datafile 'E:\soft\oradata\orcl\yyf.dbf'
size 50m
 
--创建用户
create user onlineexam identified by onlineexam
default tablespace yyf
Temporary TABLESPACE Temp
profile default
account unlock;
 
--授权
grant resource,connect,dba to onlineexam