0

为了测试许多大型二进制对象的性能,我需要在 Exact Online 中提供 1.000 个或更多文档附件。

通过用户界面加载它们非常麻烦:每个文档需要多次点击,并且没有简单的拖放操作。电子邮件可能是一种选择,但仍然有 1.000 个文档,这很麻烦。

如何将大量文档附件快速加载到 Exact Online?

4

1 回答 1

0

最简单的方法是使用网站lorempixel.com。在每一次独特的点击中,它都会提供一个具有可配置尺寸的新漂亮图片(吞吐量约为每秒创建的 1000 KB 文档附件)。

set use-http-cache false 

use 868056 /* Set division. */

insert into exactonlinerest..documents
( subject
, type 
)
select 'Sample document #' || value
,      101
from   range(1000)@datadictionary /* Load 1,000 documents. */


insert into exactonlinerest..DocumentAttachmentFiles 
( attachment
, document
, filename
)
/* And each document gets an additional attachment per time this insert is run. Run it 10 times to load 10 document attachments per document. */
select httpget('http://lorempixel.com/400/400/?val=' || value) attachment
,      dct.id
,      value || '.jpg'
from   range(1000, 1)@datadictionary
join   exactonlinerest..documents dct
on     dct.type = 101 
and    dct.subject like 'Sample document #%'
and    dct.subject = 'Sample document #' || value
于 2017-07-10T16:17:45.210 回答