SPQuery 和 RowLimit
我想要查询的列表中有大约 10000 多行(Listitems)。
我想迭代timerJob中的每个项目 - 但我不能一次获取所有项目 因为:对象模型覆盖 - 否,ListView 阈值 - 1000 - 在 FARM 级别,我们无法更改此设置。
我要迭代所有 10000+ 个(像一批)的方法是什么?
I have around 10000+ rows(Listitems) in a list I want to query.
I want to iterate each of the item in a timerJob - but I cant take all of them at a time
since : Object Model Override - NO, ListView threshold - 1000 - in the FARM level and i we cant change this.
What is the way for me to iterate all the 10000+ (like a batch) ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 ContentIterator。这将允许您迭代非常大的列表的内容,而不会触发
SPQueryThrottledException
。例如:
然后您将这样定义您的
ProcessListItem
和ProcessListItemError
:我还建议您查看 Microsoft 的 SharePoint Server 最佳实践文章,特别是“在 SharePoint Server 中编写高效代码”,进一步讨论了正确编写查询。
You should use a ContentIterator. This will allow you to iterate over the contents of very large lists without triggering an
SPQueryThrottledException
.For example:
Then you'd define your
ProcessListItem
andProcessListItemError
thusly:I'd also recommend you review Microsoft's Best Practices with SharePoint Server articles, in particular "Writing Efficient Code In SharePoint Server", which further discusses properly writing queries.