Sybase Prefetch

What is the significance of the keyword 'prefetch' in SQL queries?

Questions by keerthv   answers by keerthv

Showing Answers 1 - 1 of 1 Answers

Tejas More

  • Jul 7th, 2011
 

prefetch improves performance by anticipating the pages required for certain well-defined classes of database activities whose access patterns are predictable. The I/O requests for these pages are issued before the query needs them so that most pages are in cache by the time query processing needs to access the page. Asynchronous prefetch can improve performance for:

Sequential scans, such as table scans, clustered index scans, and covered nonclustered index scans

Access via nonclustered indexes

Some dbcc checks and update statistics

Recovery

  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