|
| Total Answers and Comments: 7 |
Last Update: October 28, 2009 Asked by: manu4sql |
|
| | |
|
Submitted by: Mad Hatter View does not occupy memory, but Oracle keeps view code in its dictionary (you can check in user_views, for example) If you delete the base table, the view becomes INVALID. In order to make it valid again, you have to ether build the deleted table again, or create anotehr view with the same name and structure as deleted table, or create synonym with the same name as deleted table, which will point to the table with the same structure.
Above answer was rated as good by the following members: chaitra murthy, rituk_15, Sowmya Viswanath | Go To Top
|