--1.创建数据库: 使用'Database Configuration Assistant'数据库配置工具根据向导创建
--2.创建表空间
create tablespace gjwtest_space
datafile 'D:\gjw_test_space.dbf' size 100m--表空间数据存放的文件大小最初为100M
autoextend on next 32m maxsize 2048m--空间不够时自动增加32M,最大2048M
extent management local;--本地管理
--3.创建临时表空间
--4.创建用户,并指定表空间
create user gjw identified by gjw--用户名密码
default tablespace gjwtest_space;
--5为用户授权
grant connect,resource,dba to gjw;