What is bulk binding?
Posted by silpa on Sep 11 2007
To avoid context switching between sql and pl/sql engine bulk binding is used
Instead of multiple individual select,update,delete,insert statements all operations are carried out at once by using FORALL statement at bulk.
This increases performance
Leave a Comment