Can a view be updated/inserted/deleted

Showing Answers 1 - 10 of 10 Answers

Ramesh P

  • Jul 7th, 2005
 

A view can deleted/Inserted/updated

  Was this answer useful?  Yes

J Lehew

  • Aug 25th, 2005
 

There are restrictions since a view can join multiple tables and have functions and groupings it may not be possible to update a view. Simple views on one table can definately be updateable.

  Was this answer useful?  Yes

Venu.

  • Nov 24th, 2005
 

A simple view can be updated/inserted/deleted but the complex view which is constructed by using multiple tables or by using group functions can't be updated/deleted/inserted directly for that we have to write instead-of-triggers. 

Srikanth

  • Nov 7th, 2006
 

a view can be manpulated by using instead of triggers

  Was this answer useful?  Yes

If a view is based upon a single table then DML operations can be performed on it, while if a view is based upon more than two tables then it is a complex view and DML operations can be performed using instead of triggers.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions