3

我在 Lotus Notes 6.5.1 中工作。我面临 32K 错误的问题。

问题 :-

我在 6.5.1 服务器中有数据库。我有很多超过 32000 字节的文档。每当我打开并保存上述大小的文档时,我都无法打开该文档。它抛出 32k 错误。但是如果文档大小小于 32000 字节,那么我可以在保存后打开文档。我可以限制文档文档的大小。据我所知,文档长度没有限制。

http://www.thenorth.com/northern.nsf/ac567d6535ab069785256a00004d66dc/4100857248b8b82185256d350058f7e4!OpenDocument

只是我想知道,为什么会这样。由于这个问题,我的计划代理没有运行。GetNextDocument 未获取下一个文档。

一条信息:- 我的数据库磁盘空间已使用 96%。

文件大小是否与上述信息有关?或 Notes 文档有什么特定的功能?

4

2 回答 2

4

听起来您已经达到了单个(摘要)字段的 32K 限制:

Notes/Domino 6.x 和更高版本对摘要字段有以下限制:每个字段 32k,每个文档 64k。

有关更多信息和解决方法,请参阅http://www-01.ibm.com/support/docview.wss?uid=swg21087474

于 2013-01-04T05:42:38.420 回答
3

The answer was already given to subject. Here only solution for such problem.

You can avoid problem with those limits if you set flag Summary to false.

dim item as notesitem
set item = doc.getFirstItem('itemname')
item.IsSummary = false
call doc.save(true, false)

and u 'do not do nothing' when you press Ctrl+s - u actually refresh document and then save it. I guess you have some computed fields on form that are refreshed and their size go up.

于 2013-01-04T09:34:43.223 回答