GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Database

 Print  |  
Question:  What is view? Types of views?use of views?how to create view(syntax)?



November 11, 2007 01:17:15 #5
 srvardhan   Member Since: November 2007    Total Comments: 1 

RE: What is view? Types of views?use of views?how to create view(syntax)?
 
The dynamic result of one or more relational operations operating on base relations to produce new relation.

creating view: create view View_Name as select query.

Basically we use views for 1. to reduce the complexity in writing queries  --> go with view resolution
2. To improve performance --> go with materializing view  (remember if the frequency of executing select query is more than the frequency of updating then only go with this)
 
Rajavardhan Sarkapally
     

 

Back To Question