Hi All,

Oracle: 11.1.0.6.0

I created a cluster:

CREATE CLUSTER cluster_titres (sicovam NUMBER(10,0))
TABLESPACE users
HASH IS to_number(substr(soundex(rawtohex(sicovam)),2,10)) HASHKEYS 45;


And I try to create a table which has CLOB field, it fails with error message (in the same time it works if I delete CLOB field):


CLUSTER cluster_titres (sicovam)
*
ERROR at line 15:
ORA-03001: unimplemented feature



I can't find CLOB within restrictions.

Please advice.
Thanks,