Click here to Skip to main content
15,900,973 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

Is it possible to cache result set in sql server 2008?

Thanks.
Posted

I don't think this is possible.
Even though SQL Server itself caches query plans, stored procedures etc., there is no way to access this cache from a program AFAIK.

You can always use a temporary table if you want to store results temporarily, do some processing on them and then drop the table.
Quick Overview: Temporary Tables in SQL Server 2005[^] might help you get started with temporary tables.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900