Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Can we create index on views?

Answer Posted / ramon

With schemabinding
the view have to be attache with schemabinding on it. Yes it is possible

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are bitmap indexes? How does they work?

2303


What are the different windows events activated at runtime ?

2945


What are the different pseudo commands? Explain in general?

1124


what is partitioning? Types of partitioning. explain? what is the new kind of partitioning type introduced in 9i?

2319


20. Using a set operator, display the client number of all clients who have never placed an order.

2246


How many memory layers are in the oracle shared pool?

1254


> 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?

2092


How to synchronize 2 schema's objects?

2233


How to add a new column to an existing table with a default value?

1056


How to start a new transaction in oracle?

1136


How to define a record variable to store a table row?

1113


What is the difference between $oracle_base and $oracle_home?

1136


How remove data files before opening a database?

1135


What are the general rules on data consistency?

1062


why should i declare foreign key constraint as self relation instead of binary relation in tables ?

2091