Using the following SQL I get a list of documents and small thumbnails in Exact Online:
select document_account_name
|| document_references_yourref
|| year(document_date) || '-' || month(document_date) || '-' || day(document_date)
|| '.pdf'
pdffilename
, binarydata
from exactonlinexml..documentattachments
where document_documenttype_number_attr = 20
and lower(name) like '%pdf'
When I try to export document from ExactOnlineXML..Documents
using Invantive Control, I get a spreadsheet or text file with the file names and the contents when I execute:
local export results as "c:\export\dump.csv" format csv
However, I want to dump the actual file contents. Is there a way to do so?