Hi experts, I am new with Documentum and trying to execute a query. Doing this straightforward without setting any starting index and max result counts
I just get 100 results back - which I guess is the default limitation as specified in the configuration within the documentum jar files.
That's why I tried to implement paging (using the attached code ) where I execute a search with having a page size of (default 100) and when I get back #records >= page size then I increment the starting index and execute the query again.
Unfortunately using this approach I get (with my system) 100 records back with the first search execution and with the next one I get 0 records.
If a setMaxResultCount with e.g. 1000 then I get back 326 records (in my system) which is what a SQL Query
select count(*) from dm_type_s
also gives and which is the total number of records.
So I guess I am missing something here? What I want is to get back all objects of a given type no matter which restrictions are set on the system, so how can I archive this?
How does the paging mechanism work?
regards, Chris