pdm_tablespace.sql
set echo on
create tablespace PDM_DATA
       datafile '/global/hood/data/u03/oradata/PARADIGM/pdm_data_01.dbf'    size   350M
       default storage ( initial   250K  next   250K
       pctincrease    0
       minextents  2      maxextents 505);
                             
create tablespace PDM_INDEX
       datafile '/global/hood/data/u03/oradata/PARADIGM/pdm_index_01.dbf'    size   150M
       default storage ( initial   100K  next    100K
       pctincrease    0
       minextents  2    maxextents 505);

set echo off