What is Function based Index and which type of function we can use in Function base index.
can we use aggregate,NVL function in Function based Index..
Answer / dinesh
Its not batter to modify where clause column with function(Performance issue). So we need to create function based index. Eg.
Create Index Fun_indx on EMP (UPPER(FIRST_NAME).
we can't create function based index on aggregate function.
but we can create NVL function as function.
also we can create function based index on user define function but function should be"DETERMINISTIC".
eg
create or replace function fun_index(a in number) Return
Number DETERMINISTIC IS
BEGIN
'''
,,,
END;
Is This Answer Correct ? | 0 Yes | 0 No |
How do I edit a trigger in sql developer?
How do you remove duplicate records from a table?
What is lookup table in sql?
What is difference between mysql and postgresql?
Can a key be both primary and foreign?
Are dml statements autocommit?
how to create temparary sequence
How can we avoid duplicating records in a query?
What is the need of merge statement?
why sql is used as interpreter frequently rather than a compile?
What is oracle ? why we should go for oracle database instead of diffrent databases available in the industry.
Can a procedure in a package be overloaded?