如何使用 FileNet API 获取对象存储的文档计数

Posted

技术标签:

【中文标题】如何使用 FileNet API 获取对象存储的文档计数【英文标题】:How to get the count of documents for the object store using FileNet API's 【发布时间】:2021-08-19 06:00:57 【问题描述】:

我在对象存储中有超过一百万个文档,我想知道特定时间段内的文档数。如何使用 FileNet CE api 获取计数

我使用的代码如下,最多只能提供 200 个文档。

--Code
SearchScope scope= new SearchScope(obj);
SearchSQL sql= new SearchSQL();
sql.setMaxRecords(100000);
String query="select * from document where datecreated >(date)";
RepositoryRowSet res= scope.fetchRows(sql,1000,null,null);
int count=0;
PageIterator p= result.pageIterator();
while(p.nextPage)
count+=p.getElementCount();a

【问题讨论】:

如果最大结果数是问题,请同时考虑:***.com/questions/54311405/… 【参考方案1】:

background searches中可以使用COUNT()函数:

select COUNT(Id) from Document

Link to SQL syntax for background search query

Working with background search queries via API

或者,您可以使用直接数据库连接并使用 DocVersion 表中记录的数据库表架构查找文档数。

Table schema - DocVersion

【讨论】:

以上是关于如何使用 FileNet API 获取对象存储的文档计数的主要内容,如果未能解决你的问题,请参考以下文章

通过符号名称获取 PropertyTemplate 的最快方法是 IBM FileNet CE API

FileNet:获取存储区域上的可用空间

SearchScope fetchRows 与 fetchObjects (IBM FileNet CE API)

使用 FileNet Java API 获取其他用户的访问权限

Filenet - 如何获取工作流组中的属性值

使用 FileNet API 获取 DocumentSet 中最新版本文档的检索名称