创建表空间
create temporary tablespace xyzqinfo_temp
tempfile 'D:\oracle\data\xyzqinfo_temp01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
create tablespace xyzqinfo_data
logging
datafile 'D:\oracle\data\xyzqinfo_data01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
create user username identified by password
default tablespace xyzqinfo_data
temporary tablespace xyzqinfo_temp;
grant dba to username;
grant connect,resource to username;