登陆sqlplus
system/manager 
 
建用户表空间
create tablespace 'xxx' datefile 'x:\XXX\file1.dbf' size 100M reuse autoextend on next 8M maxsize unlimited exetent management local autoallocate ;建用户
create user xxx identified by yyy default tablespace xxx temporary tablespace yyy quota 0m on system quota unlimited on xxx quota unlimited on yyy profile default;grant connect,resource to xxx;....