--创建表空间
create tablespace myoracle_data
datafile 'E:\app\Administrator\oradata\orcl\myoracle_data.ora'
size 200m
autoextend on
next 30m;
--创建用户
create user myoracle
identified by myoracle
default tablespace myoracle_data
quota 500m on users;
--赋权限
grant all privileges to myoracle;
grant dba to myoracle