RedInTheCorner
Programmer
I want to use function based index below, but when I tried to crate index, I got following errors;
ORA-03113 and ORA-03114,
CREATE UNIQUE INDEX Ndx_XTableonAB
ON XTable
(CASE WHEN Status = 'T' THEN A END,
CASE WHEN Status = 'T' THEN B END)
TABLESPACE NUCL_NDX
STORAGE (INITIAL 128K NEXT 128K PCTINCREASE 0)
PCTFREE 5 ONLINE;
I tried many times with different Database servers but each time I got these errors. And after that I stuck cannot drop or rebuild index Any idea?
Thanks,
Atilla
ORA-03113 and ORA-03114,
CREATE UNIQUE INDEX Ndx_XTableonAB
ON XTable
(CASE WHEN Status = 'T' THEN A END,
CASE WHEN Status = 'T' THEN B END)
TABLESPACE NUCL_NDX
STORAGE (INITIAL 128K NEXT 128K PCTINCREASE 0)
PCTFREE 5 ONLINE;
I tried many times with different Database servers but each time I got these errors. And after that I stuck cannot drop or rebuild index Any idea?
Thanks,
Atilla