Can we create index on views?

Answer Posted / ashok naik

Yes that is called indexed views using this we can improve
Query performance if your view contain single select
stament then we can easily establish unique clusterd index

Is This Answer Correct ?    63 Yes 20 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Using the relations and the rules set out in the notes under each relation, write table create statements for the relations EMPLOYEE, FIRE and DESPATCH. You should aim to provide each constraint with a formal name, for example table_column_pk.

1585


How many types of segments in Oracle?

778


What are the roles of dba?

791


How to write a query with a right outer join in oracle?

834


How to rebuild an index in oracle?

754


What is oracle host variable?

705


How to delete a column in an existing table in oracle?

804


How to concatenate two text values in oracle?

820


Explain table?

847


What is oracle join syntax?

735


How to do paging with oracle?

753


various types of hints and their usage

2367


> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?

1791


State and explain the different types of data models?

708


What is a view and how is it different from a table?

723