Bulk Data Operations

You are developing a PL/SQL block designed for bulk data operations. When attemping to store table data for multiple rows in a PL/SQL variable, which one of the following choices identifies the mechanism best suited for this task (choose one)?
A. cursor
B. varchar2
C. record
D. table of records

Questions by sue86

Showing Answers 1 - 12 of 12 Answers

Answer is D. 

We need multiple rows on a variable  so we use here Table of records .it uses just like as collection of records.
Cursor is used for selecting multiple rows from stored table.
Varchar stores only single value.
Record used to store a single row thus for store multiple rows on a variable use Table of records

rahulg5211

  • Oct 25th, 2010
 

Table of record type is best option to perform this operation.becouse
first thing pl/table has unlimited size.
second thing for fetching bunch of record into pl/table,besides  of INTO clause we need to use 'Bulk Collect INTO'.becouse in table by using INTO one record can be insert and we need to insert multiple record(bunch of record) so we'll use Bulk Bulk Collect into.
 

Thnx for paying attention.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions