I've looked up the error message asscociated with ora-01031 and it relates to a user's password changes. Anyone have ideas on how to get a functional based index working.
1 CREATE INDEX table_field_caps_IDX ON table(UPPER(field))
2 TABLESPACE index_tablespace
3 PCTFREE 10
4* STORAGE(INITIAL 1M NEXT 1M PCTINCREASE 0 )
5 /
CREATE INDEX table_field_CAPS_IDX ON table(UPPER(field))
*
ERROR at line 1:
ORA-01031: insufficient privileges
1 CREATE INDEX table_field_caps_IDX ON table(UPPER(field))
2 TABLESPACE index_tablespace
3 PCTFREE 10
4* STORAGE(INITIAL 1M NEXT 1M PCTINCREASE 0 )
5 /
CREATE INDEX table_field_CAPS_IDX ON table(UPPER(field))
*
ERROR at line 1:
ORA-01031: insufficient privileges