Difference between revisions of "Knowledge:Utilities"

From OpenKM Documentation
Jump to: navigation, search
(Created page with '== Show text extracted from document (SQL) == <source lang="sql"> select NBS_UUID, NDC_TEXT_EXTRACTED, NDC_TEXT from OKM_NODE_DOCUMENT where NBS_UUID='document-uuid' </source> =…')
(No difference)

Revision as of 10:59, 4 October 2012

Show text extracted from document (SQL)

select NBS_UUID, NDC_TEXT_EXTRACTED, NDC_TEXT from OKM_NODE_DOCUMENT where NBS_UUID='document-uuid'

Force document text extraction (HQL)

update NodeDocument nd set nd.textExtracted=false where nd.uuid='document-uuid'