Why below code can`t be executed?
It is from <Expert one on one> by tom kyte and as I can see it works well in Tom`s example.
Am I missing anything? Please help!
CREATE TABLE emp (empno int, ename varchar2(20))
PARTITION BY HASH(empno)
(partition part_1 tablespace IMSDBA,
partition part_2 tablepsace GTMDBA
)/