文章分类 -  C#_ActionList

摘要:将SQL Server数据表驻留内存是SQL Server提供的一项功能,在一般小型系统的开发过程中估计很少会涉及到。这里整理了相关文档资料,演示如何把SQL Server中一个表的所有数据都放入内存中,实现内存数据库,提高实时性。1, DBCC PINTABLEMarks a table to be pinned, which means Microsoft SQL Serverdoes not flush the pages for the table from memory.SyntaxDBCC PINTABLE(database_id,table_id)To determine the 阅读全文
posted @ 2013-06-30 08:44 C#老头子 阅读(385) 评论(0) 推荐(0)