sqlplus sys/oracle as sysdba << EOF CREATE TABLESPACE platform datafile '/u01/app/oracle/oradata/XE/platform.dbf' SIZE 32M AUTOEXTEND ON NEXT 32M MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL; create user platform identified by platform default tablespace platform temporary tablespace temp; grant connect,resource to platform; exit; EOF