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.
将 .NET 中的DataTable放入远程SQL Server实例上的临时 SQL 表中的最快和最有效的方法是什么?
我正在处理的数据表最多可以包含 100,000 条记录,因此我担心性能。
100k 条记录,您担心性能吗?服务器是手机吗?100 万条记录是 SMALL,1 亿条开始是“想想还是你有问题”的水平,100.00 条记录是我的平板电脑可以有效处理的东西。
去做就对了。SqlBulkCopy 是将数据从 .NET 应用程序向下移动到服务器的最快方式,使用它后您无法再优化很多内容。我定期上传数百万(数千万)条记录,让我的网格进行财务模拟。