what is bulk bind
Answers were Sorted based on User's Feedback
Answer / guru
A DML statement can transfer all the elements of a
collection in a single operation, a process known as bulk
binding. If the collection has 20 elements, bulk binding
lets you perform the equivalent of 20 SELECT, INSERT,
UPDATE, or DELETE statements using a single operation. This
technique improves performance by minimizing the number of
context switches between the PL/SQL and SQL engines. With
bulk binds, entire collections, not just individual
elements, are passed back and forth.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / 24/07/07
Bulk Bind is technique where instead of multiple individual
SELECT, INSERT, UPDATEE & DELETE statements are executed to
retrive from or store data in, at table all of the
opeartions are carried out at once in bulk.
Regard's
Srinivas Ganamur
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / roopesh kumar
Bulk binding is a way for performance tunning i.e. it will
complete the whole process in once remove the contaxt
switching of sql to pl-sql & pl-sql to sql.
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / suresh somayajula
Binding of entire collection at once is called as " Bulk
Bind".
Is This Answer Correct ? | 0 Yes | 1 No |
How do I find duplicates in sql?
What are the differences between Database Trigger and Integrity constraints ?
what is union? : Sql dba
how do you know the version of your mysql server? : Sql dba
What is bulk collections?
why we use nocopy?
what is a sub query?how will you calculate working days in a month using sub query?
Mention what is the function that is used to transfer a pl/sql table log to a database table?
What is referential integrity ?
Is oracle sql free?
What is the difference between mdf and ndf files?
Where is sql database stored?