Hi,
i have calculated columns which is done on single column against current date trunc(currtent_date-due_date).
because of performance issue i am trying to create the function based indexing,
becuase i have used trunc oracle is not allowing indexing on this columns.
Quote:
|
SQL Error: ORA-01743: only pure functions can be indexed.
|
i tried to create index (current_date-due_date) same error is occurred.
is there any alternative way to achieve this..?