Page 1 of 1

Force Text Extraction

PostPosted:Mon Jul 15, 2024 11:57 am
by MarcoOliveira
Hello!

I have a question. When openKM for some reason is unable to extract text from a.PDF document (for example).

Is it possible to force text extraction in any way?

Thank you!

VERSION: 6.3.12 CE

Re: Force Text Extraction

PostPosted:Tue Jul 30, 2024 7:17 am
by jllort
The control of what is already processed by text extractor or not is in the table OKM_NODE_DOCUMENT.

You can set a document in the text extraction queue again with something like:
Code: Select all
update OKM_NODE_DOCUMENT set NDC_TEXT_EXTRACTED='T' where NBS_UUID='the uuid of the document';

Re: Force Text Extraction

PostPosted:Fri Aug 09, 2024 4:07 pm
by MarcoOliveira
Thanks. I will try.