Hi all

Can anyone tell me what could I possibly doing wrong with the following:

When I create the table without specifying the Physical Attribute it works fine but when I do it along with physical attributes it gives me the following error :

ERROR at line 3:
ORA-00933: SQL command not properly ended

CREATE TABLE temp
as (select * from emp where deptno=99)
TABLESPACE SIS_D1
PCTUSED 40
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 120K
NEXT 5M
MINEXTENTS 1
MAXEXTENTS 2147483645
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
)
LOGGING
NOCACHE
NOPARALLEL
/

Thanks in advance

RajTABLESPACE SIS_D1