Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从 SQL Server 填写的数据中清除 RAM 内存?
是否有任何程序或选项可以做到这一点?
您可以使用
CHECKPOINT DBCC DROPCLEANBUFFERS
从内存中删除所有数据页。测试服务器性能很有用:如果未缓存查询所需的数据页,则查询的执行方式会有所不同。
你不释放内存。如果您希望它使用更少的内存,请在服务器设置中添加限制。
如果您确实释放了内存,它会减慢您的查询速度,因为所有内容都必须再次从磁盘读取。