本文介绍了存储数据的其他表与ADO.Net数据表不同?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们有这个庞大的应用程序,它基于在

dataTable上存储大量数据。我们唯一的问题是,将大量数据(1亿美元记录)存储到数据表中会降低系统速度,因为所有这些

数据都将被存储在记忆中。性能真的受此影响。

因为我们真的不想根据这个数据表重新设计所有内容,

是否有任何公司提供类似于

的数据表以更有效的方式存储大量数据?基本上,我们将所有这些

数据(这是一次性过程)加载到数据表中并使用它。我们

不想改变任何一个;我们只想要类似于存储更好方法的

数据表。另外,windows datagrid应该能够绑定到这个新表没有太多问题。

谢谢。

We have this huge application that''s based on storing tons of data on a
dataTable. The only problem we''re having is that storing LOTS of data (1
million records) into a datatable will slow down the system since all this
data will be stored in memory. The performance is really affected with this.
Since we don''t really want to redesign everything based on this datatable,
are there any companies that offer a product similar to the datatable that
stores lots of data in a more efficient way? Basically, we load all this
data (it''s a one-shot process) into the datatable and work with that. We
don''t want to change any of that; we just want something similar to the
datatable that stores a better way. Also, the windows datagrid should be
able to bind to this new table without many problems.
Thanks.

推荐答案







这篇关于存储数据的其他表与ADO.Net数据表不同?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 17:12