Hello,
I have tried the following:
create table TEST_FBI
(
UNIQUE_ID NUMBER(16)
);
create index FBI on TEST_FBI bitand(UNIQUE_ID, 4);
create index FBI2 on TEST_FBI decode(BITAND(UNIQUE_ID,4), 0, 1, NULL);
in
PL/SQL Developer Version 6.0.4.906 (MBCS)
Windows XP version 6.0 (build 2600) Service Pack 2
Oracle 9.2.0.4
And then I extracted DDL of that table and both indexes were missing first word, e.g.
create index FBI on TEST_FBI (UNIQUE_ID, 4)
create index FBI2 on TEST_FBI (BITAND(UNIQUE_ID,4), 0, 1, NULL)
am'I doing something wrong or is this a bug? Can you reproduce it?
best regards
Jiri
I have tried the following:
create table TEST_FBI
(
UNIQUE_ID NUMBER(16)
);
create index FBI on TEST_FBI bitand(UNIQUE_ID, 4);
create index FBI2 on TEST_FBI decode(BITAND(UNIQUE_ID,4), 0, 1, NULL);
in
PL/SQL Developer Version 6.0.4.906 (MBCS)
Windows XP version 6.0 (build 2600) Service Pack 2
Oracle 9.2.0.4
And then I extracted DDL of that table and both indexes were missing first word, e.g.
create index FBI on TEST_FBI (UNIQUE_ID, 4)
create index FBI2 on TEST_FBI (BITAND(UNIQUE_ID,4), 0, 1, NULL)
am'I doing something wrong or is this a bug? Can you reproduce it?
best regards
Jiri