ReadViewEntries limitations

Hello guys,

I am using the ReadViewEntries property for access the view in XML. But the problem is I am getting only first 30 records.

But I am haing more then 25j recoreds in the names.nsf

If there any limitation in “ReadViewEntries” property. And I am not able to get all the records because of this?

I am using this property:-

http://domain/names.nsf/_People?ReadViewEntries

Please reply as this is urgent.

Thanks in advanse.

Subject: ReadViewEntries limitations

I know you can use the count parameter to specify the number of entries returned (set it high).

Read this on possibly increasing the limit based on the server:

http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/ebee0d6070712e4085256e4e005471a1?OpenDocument

Subject: RE: ReadViewEntries limitations

We did that setting and I am trying to access the names.nsf database view in XML…

But it is taking more time and if I put the count 25000 it is giving the error

“HTTP Web Server: Lotus Notes Exception - Insufficient memory - thread local heap is full”

so is there any limitation like I am not able to access the data more then some value.

Subject: RE: ReadViewEntries limitations

If you even THINK you need to retrieve all 25000+ entries at one go, you’re probably doing something wrong. 30 enties isn’t good for much, but I can’t think of any situation in which you wouldn’t be able to get smaller chunks as you actually need them (using, say, StartKey and UntilKey).

Subject: RE: ReadViewEntries limitations

I need this because I need to migrate all the data to the other site… and they require all the data in XML… but I am not able to get all data in one time…

Is there any way so that I can take the data in 3-4 parts…

I know I can do like &count=1000

but if in second time If I need the data from 1001 to 2000 then How can I do this?

Any help?? please this is very urgent for me

Subject: RE: ReadViewEntries limitations

The answer is very close: it is this forum itself. Click on the Next-button in the forum and look at the URL.

Add &start=1000 to the url; the view will start at the 1000th entry.

Subject: RE: ReadViewEntries limitations

Thanks a Lot to you all guys for my help.

Subject: RE: ReadViewEntries limitations

Try count=0