create tablespace a_dat datafile 'D:\oracle\product\10.2.0\oradata\orcl\a_dat.dbf' size 1024m autoextend on next 100m maxsize unlimited;
create temporary tablespace aa_dat_temp
tempfile 'D:\oracle\product\10.2.0\oradata\orcl\a_dat_temp.dbf'
size 1024M autoextend on next 100m maxsize unlimited;
create user applyreleasesystem identified by applyreleasesystem
default tablespace a_dat
temporary tablespace a_dat_temp;
grant connect,resource,dba to applyreleasesystem;
grant create session,create table,unlimited tablespace to applyreleasesystem;