user-platform.sh 333 B

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