create temporary tablespace temp_1 tempfile 'E:\temp_1.dbf' size 20M autoextend on;//在E盘创建20M的表空间
create tablespace ts_1 datafile 'E:\ts_1.dbf' size 20M autoextend on;
create user user1 identified by 111111 default tablespace ts_1 temporary tablespace temp_1;
grant resource,connect,dba to user1;
create tablespace ts_1 datafile 'E:\ts_1.dbf' size 20M autoextend on;
create user user1 identified by 111111 default tablespace ts_1 temporary tablespace temp_1;
grant resource,connect,dba to user1;