Row-Returning vs batch Returning

A

ac

Hi,

Some fundamental question which i came across many times, what are the
different?

thanks
ac.
 
A

Arvin Meyer

The differences are more apparent in Client/Server than in File Server
databases. Returning 1 row of data uses less network resources.

Perhaps you meant to ask about row-level locking as opposed to page locking.
In that case Page locking is faster than row-level locking and should be
used when there are no record locking problems. When there are record
locking conflicts use row-level locking or for larger updates lock all
records in the table.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
A

ac

Thank You for the enlightenment.
cheers,
ac.
Arvin Meyer said:
The differences are more apparent in Client/Server than in File Server
databases. Returning 1 row of data uses less network resources.

Perhaps you meant to ask about row-level locking as opposed to page locking.
In that case Page locking is faster than row-level locking and should be
used when there are no record locking problems. When there are record
locking conflicts use row-level locking or for larger updates lock all
records in the table.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top