Is there any types of views in Oracle? If so, please let me know...
Is there any types of views in Oracle? If so, please let me know...
follow this useful link
what is the difference between cursor and collections
cursor
When a query is executed in oracle, a result set is produced and stored in the memory. Oracle allows the programmer to access this result set in the memory through cursors.
Collection
A Collection is an ordered group of elements, all of the same type. Each element has a unique subscript, called an index, that determines its position in the collection
Last edited by susarlasireesha; 01-10-2008 at 03:21 AM.
Hello Laxmi,
There r two types of VIEW in ORACLE.
Simple View and Complex View
simple view derives data from only one table but complex view derives data from many table
simple view contain no functions or group of data but complex view contain function or group of data
simple view always allow DML operation through th view but complex view does not always allow