Oracle创建'数据库'三步走

--创建表空间
create tablespace waterboss
datafile 'd:waterboss.dbf'
size 100m
autoextend on
next 10m;

--创建用户
create user wateruser
identified by 011220
default tablespace waterboss;

--用户赋权
grant dba to wateruser;
原文地址:https://www.cnblogs.com/niwotaxuexiba/p/10164785.html