Difference between revisions of "Knowledge:Utilities"

From OpenKM Documentation
Jump to: navigation, search
(List missing datastore document)
Line 40: Line 40:
  
 
for (NodeDocumentVersion ndv : NodeDocumentVersionDAO.getInstance().findAll()) {
 
for (NodeDocumentVersion ndv : NodeDocumentVersionDAO.getInstance().findAll()) {
     File file = FsDataStore.resolveFile(ndv.getUuid());
+
    String verUuid = ndv.getUuid();
 +
     File file = FsDataStore.resolveFile(verUuid);
 
      
 
      
 
     if (!file.exists()) {
 
     if (!file.exists()) {
         print("Missing file: " + file);
+
        String docUuid = ndv.getParent();
 +
        String docPath = NodeBaseDAO.getInstance().getPathFromUuid(docUuid);
 +
         print("File: " + file + "<br/>");
 +
        print("Path: " + docPath + "<br/>");
 
     }
 
     }
 
}
 
}
 
</source>
 
</source>

Revision as of 12:56, 8 October 2012

Show text extracted from document

HQL

select nd.uuid, nd.textExtracted, nd.text from NodeDocument nd where nd.uuid='document-uuid';

SQL

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

Show text extracted of folder children documents

SQL

select NBS_UUID, NDC_TEXT_EXTRACTED, NDC_TEXT from OKM_NODE_DOCUMENT where NBS_UUID in (select NBS_UUID from OKM_NODE_BASE where NBS_PARENT='folder-uuid');

Force document text extraction

HQL

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

SQL

update OKM_NODE_DOCUMENT set NDC_TEXT_EXTRACTED='F' where NBS_UUID='document-uuid';

Force document text extraction of folder children documents

SQL

update OKM_NODE_DOCUMENT set NDC_TEXT_EXTRACTED='F' where NBS_UUID in (select NBS_UUID from OKM_NODE_BASE where NBS_PARENT='folder-uuid');

List missing datastore document

import com.openkm.module.db.stuff.*;
import com.openkm.dao.bean.*;
import com.openkm.dao.*;

for (NodeDocumentVersion ndv : NodeDocumentVersionDAO.getInstance().findAll()) {
    String verUuid = ndv.getUuid();
    File file = FsDataStore.resolveFile(verUuid);
    
    if (!file.exists()) {
        String docUuid = ndv.getParent();
        String docPath = NodeBaseDAO.getInstance().getPathFromUuid(docUuid);
        print("File: " + file + "<br/>");
        print("Path: " + docPath + "<br/>");
    }
}