ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories  >>  Software  >>  Databases  >>  SQL Server
 
 


 

 
 Oracle interview questions  Oracle Interview Questions
 SQL Server interview questions  SQL Server Interview Questions
 MS Access interview questions  MS Access Interview Questions
 MySQL interview questions  MySQL Interview Questions
 Postgre interview questions  Postgre Interview Questions
 Sybase interview questions  Sybase Interview Questions
 DB Architecture interview questions  DB Architecture Interview Questions
 DB Administration interview questions  DB Administration Interview Questions
 DB Development interview questions  DB Development Interview Questions
 SQL PLSQL interview questions  SQL PLSQL Interview Questions
 Databases AllOther interview questions  Databases AllOther Interview Questions
Question
What is a view? is View updatable?
 Question Submitted By :: Honeysukumar
I also faced this Question!!     Rank Answer Posted By  
 
  Re: What is a view? is View updatable?
Answer
# 1
Views are virtual tables . Formed using queries.

View can / can not be updtaed/
 
Is This Answer Correct ?    4 Yes 5 No
Sd
 
  Re: What is a view? is View updatable?
Answer
# 2
a view is a virtual table.it's an object that derives it's 
data from one or more tables.it ensures that users are able 
to retrieve and modify only the data which is seem by them.

u r unable to update attributes becoz views allow only one 
of the underlying tables to be updated at a time.u need to 
update attributes by giving two separate update commands.
 
Is This Answer Correct ?    3 Yes 2 No
Neetu
 
 
 
  Re: What is a view? is View updatable?
Answer
# 3
view is a virtual table created from the physical table 
which is existing.view can be updated unless the base table 
does not have any relation u another table
 
Is This Answer Correct ?    4 Yes 3 No
Harinireddy
 
  Re: What is a view? is View updatable?
Answer
# 4
a view is nothing but a logical representation of tables. 
it is also called as "virtual table".
a view may be updatable view or non updatable view.
 
Is This Answer Correct ?    3 Yes 2 No
Sai Krishna.k
 
  Re: What is a view? is View updatable?
Answer
# 5
View is a virtual table,created by users for their own 
convienience.
views can be updated as required but the updated data will 
not reflect in the base table, since view is the virtual 
table not the original table.
so, if we want to update the table we have to update that 
outside the view or directly but not using view.
if we update through view its temporary means  just in the 
view only but will not reflect in the base table.
 
Is This Answer Correct ?    3 Yes 6 No
Gunjan Sapra
 
  Re: What is a view? is View updatable?
Answer
# 6
You can modify data by using a view in only one of its base 
tables even though a view may be derived from multiple 
underlying tables. For example, a view vwNew that is 
derived from two tables, table and table2, can be used to 
modify either table or table2 in a single statement. A 
single data modification statement that affected both the 
underlying tables is not permitted
 
Is This Answer Correct ?    4 Yes 0 No
Sandhya
 
  Re: What is a view? is View updatable?
Answer
# 7
A view is a Virtual Table or a Logical representation.
View type :- SimpleView and Complex View.
Simple views are updatable.
 
Is This Answer Correct ?    3 Yes 1 No
Kumaran
 
  Re: What is a view? is View updatable?
Answer
# 8
View is sub set of one or more then one tables 
View is use to fetch  the selected columns from one more 
then one tables. 
Yes we can update the view if it is not read only.
 
Is This Answer Correct ?    2 Yes 0 No
Darshan Shah
 
  Re: What is a view? is View updatable?
Answer
# 9
VIEW :- VIEW IS VIRTUAL TABLE. WHICH GIVE ACCESS TO SUBSET 
OF COLUMN OF THE TABLES.

VIEW CAN BE UPDATED THAT GET EFFECTED THE TABLE ALSO.
 
Is This Answer Correct ?    2 Yes 1 No
Amit Upadhyay
 
  Re: What is a view? is View updatable?
Answer
# 10
View is a taliored representation of data of a particular 
table. In one way to say view is a shadow of a table. What 
ever U do on a view will reflect on the table vice versa.

Views r 2 types simple and complex  simple is selected rows 
from one table and complex is selected from more than one. 
In oracle complex view can be updated by using instead of 
triggers from version 8.0
 
Is This Answer Correct ?    2 Yes 0 No
Kalyana Chakravarthy
 
  Re: What is a view? is View updatable?
Answer
# 11
view is a virtual table i.e a new table is created using 
base table.
view can be updated based on some restrictions
 
Is This Answer Correct ?    1 Yes 0 No
Venkat
 

 
 
 
Other SQL Server Interview Questions
 
  Question Asked @ Answers
 
could you please reply for these question: 1.About Use Apply? 2.Avoid cursors - When we have a situation that we can not avoid the use of cursor than what is the alternate solution? is there anything we can use instead of cursor to perform the desired task? which optiomize the peroformance too. 3.What is computed columns? Thanks in advance. Regards, Rupesh  3
How m-m relationships are implemented?  1
there is a table having two columns no and name and the data is 1 A 2 B 3 C write a query that will result a horizontal output A,B,C vsworx7
Difference between server.transfer and server.execute method?  1
How do we get month name in SQL Server 2000, Oracle, MS Access?  9
CREATE TABLE [dbo].[HPMS_CompetencyTypes](CompetencyType varchar(50) ) go create trigger hpms_create_Insert on HPMS_CompetencyTypes for insert as if Exists ( select * from [HPMS_CompetencyTypes] where CompetencyType=(select * from [HPMS_CompetencyTypes])) begin Rollback tran Raiserror ('duplicate value',12,6) go insert HPMS_CompetencyTypes (CompetencyType) values ('new') I'm new to trigger can any one tell me where is the issue. Please.  2
what is difference between having and where clause ?  2
can foreign key take role of primary key? TCS4
what is a cursor and what is its use?  1
hi, i have a table called names and field name select * from names name a b c d i want to display like this name a,b,c,d how it is possible Regards Baiju  3
How do you find the error, how can you know the number of rows effected by last SQL statement?  2
Explain Trigger with an example?  1
i need some interview questions on sql server developer plz any onee send some links.  1
How to get the count of distinct records. Please give me the query? Value-Labs5
Is it possible to delete duplicate rows in a table without using a temporary table ?  6
what is extended StoreProcedure ? Satyam3
What is the difference between constraints and triggers? Wipro6
is there more the two primary key in a single table? Systematix22
What is The Use Of TIMESTAMP DataType in SQL Server 2005?  3
Is it possible to create tables in stored procedures using a variable for the table name?  2
 
For more SQL Server Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com