A nested table can be stored as a database column. This means that the entire nested table is contained in one row of a table and each row of the table can contain different nested table
1. Can be stored in database
2.can be manipulated using SQL
3.can be automatically null
4.individual elements can be accessed using subscript
Above answer was rated as good by the following members: ds_devi, MAQDOOMAAMER
RE: What is nested table in Oracle and and difference ...
A nested table can be stored as a database column. This means that the entire nested table is contained in one row of a table and each row of the table can contain different nested table
1. Can be stored in database
2.can be manipulated using SQL
3.can be automatically null
4.individual elements can be accessed using subscript
RE: What is nested table in Oracle and and difference ...
Nested table is the collection object in oracle. It is also stored in database one in a separate file called store file .This can be used as a column in a table like VARRAY. This is created in a database using create type command .It is used for storing a single dimensional value like VARRAY. The difference between VARRAY and nested table is we can have numerous value single table but in case of VARRAY we can not have more than the defined limit .
RE: What is nested table in Oracle and and difference between table and nested table
In Oracle nested table are considered one-column database tables. Tables which are having one table as a cell. Nested tables are like one-dimensional arrays stored in a table but we can model nested table to hold multi-dimensional arrays.
RE: What is nested table in Oracle and and difference between table and nested table
A Table is a basic unit of storage in oracle.
A nested table is a collection type. The main advantage of collections is instead of processing data sequentially we may process all the date in one step. - It is a collection of rows stored as a column in a table. - It is a table withing a table. - There is no restriction on number of rows in a nested table - There is no restriction on number of columns in a nested table. - We can not index nested table. - The nested table is stored as a seperate table and main table maintains a pointer to the nested table as reference. - Nested table stored data in no particular order - But when you retrieve data into pl/sql variable it assigns serial number starts with 1 - Intially they are dense you may sparse later. - Nested tables are unbounded. There is no upper limit.