Main diff between varray and nested tablea
Answers were Sorted based on User's Feedback
Answer / srinivas
We should give the maximum size when we declare the varry, and if u perform delete then it removes the values from the end, use this varray when u know the size
we no need to give the size when we declare the nested tables,we can remove the values any where from the nested table,use this when u don't know the size.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / dandu devendra
Varray: constrain table.Basically this table dense by default indexs start with 1.
Nested table: unconstrain table.
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / prabu t
Varray -
Can be stored in the database.
Bounded (maximum length should be given).
Delete / Remove values only from the end.
Nested Tables -
Cannot be strored in the database.
Unbounded (No maximum length).
Delete / Remove values anywhere in the table.
Is This Answer Correct ? | 7 Yes | 8 No |
What is CYCLE/NO CYCLE in a Sequence?
Why plvtab is considered as the easiest way to access the pl/sql table?
how to calcuate the second highest salary of he employee
Mention what does plvtab enables you to do when you showthe contents of pl/sql tables?
how to use regular expression in pattern match conditions? : Sql dba
Why you are not able to create a table using select command,if it is having a LONG column? for eg:create table test as select * from test1 here test1 containg a column having LONG datatype...
What program will open a mdb file?
what is data integrity? : Sql dba
We have a CURSOR then we need BULK COLLECT?
ex: take one schema in that t1,t2,.....tn tables and you don't no the table name also. write a procedure if enter columns name then display the maching columns .otherwise display the unmatch columns.
What is bulk collections?
Does sqlite need a server?