RE: Is it possible to update Views? If yes, How, If No...
You cannot update a view by writting a insert update or delete query on the view. If you want to update some data in the view than you have to update the underlying tables.
RE: Is it possible to update Views? If yes, How, If No...
Hello Shailendra
This is rahul.As per discussion on views. I want to share some thing. There are two types of views namely Simple and complex views.
U can perform DML operation on simple views which is based on single table and that view doesn't contain any single row function and any group by clause and it has to satiesfy integrity constraint also.
U can't perform DML operation on complex views becuase they are based on multiple table. U can achive this task by using Triggers(Instade of...).
RE: Is it possible to update Views? If yes, How, If No...
Hai I am sreenivas kumar from Andhra Pradesh. Yes it is possible to update the vies created on single table if the vies are created on multiple tables then it is not possible to update if we want to update these type of vies then we have to create an instead of trigger then only we can update the views created on multiple tables.