Submitted Questions

  • PL/SQL Block output

    begin For i in 1..5 loop insert into A values(i); savepoint 1; end loop; rollback to savepoint 1; commitend;--initially there are no data in table A. So my question is after execution of this block what should be the data present in table A?

  • Difference between Varray and Nested Table

    What is the difference between Varray And Nested Table?

    Vishnu Bharath

    • Jan 8th, 2014

    Varrays are generally dense , that mean you cannot delete elements of the varray.But the elements of the Nested Table are generally sparse in nature and hence the elements can be deleted in between us...

    Sheraz Baig

    • Dec 3rd, 2013

    Both are type of collections in Oracle. In Varray because its not stored in database columns so no DML operation can be implemented but on other hand as Nested tables we can perform DML operations