哪个更快:过滤内存中的 DataSet 或从 SQL Server 返回结果集?

Which is faster: filtering a DataSet in-memory or returning a result set from SQL Server?(哪个更快:过滤内存中的 DataSet 或从 SQL Server 返回结果集?)
本文介绍了哪个更快:过滤内存中的 DataSet 或从 SQL Server 返回结果集?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在处理一张非常大的表格(800k 记录和攀爬),我想过滤所述表格.问题是,该表存储在 SQL Server 中.所以,我想知道,会不会

I'm working on a pretty large table, (800k records and climbing) and I'd like to filter said table. The thing is, the table is stored in SQL Server. So, I was wondering, would a

SELECT * FROM table WHERE condition1=true

查询比将表加载到类型化的 DataSet 并使用 DataRow.Find() 然后将所有这些发送到另一个 DataTable 更快吗?

query be faster than loading the table to a typed DataSet and using DataRow.Find() then sending all those to another DataTable?

我猜是的,但我还是会问.

I'm guessing yes, but I'll ask anyway.

推荐答案

只要你的 SQL Server 没有因为 RAM 不足而分页,SQL Server 应该总是比通过网络加载整个表然后在本地过滤要快..

As long as your SQL server is not paging because of RAM starvation the SQL Server should always be faster than loading the whole table via network and then filtering locally...

这篇关于哪个更快:过滤内存中的 DataSet 或从 SQL Server 返回结果集?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)