Difference between revisions of "User:Pavila"

From OpenKM Documentation
Jump to: navigation, search
Line 10: Line 10:
  
 
<source lang="sql">
 
<source lang="sql">
from NodeDocument nd where nd.uuid in (select ndv.parent from NodeDocumentVersion ndv group by ndv.checksum having count(ndv.checksum) > 1);
+
select nd.uuid, nd.name, ndv.checksum from NodeDocument nd, NodeDocumentVersion ndv where nd.uuid = ndv.parent and ndv.checksum in  
select nd.name from NodeDocument nd where nd.uuid in (select ndv.parent from NodeDocumentVersion ndv where ndv.checksum in (select ndv.checksum from NodeDocumentVersion ndv group by ndv.checksum having count(ndv.checksum) > 1))
+
  (select ndv.checksum from NodeDocumentVersion ndv where ndv.current = true group by ndv.checksum having count(ndv.checksum) > 1)  
 +
order by nd.name;
 
</source>
 
</source>
  

Revision as of 00:38, 5 August 2012

OpenKM Core developer.

import java.util.*;
import java.nio.charset.*;

print("Charset: " + Charset.defaultCharset()+"<br/>");
print("Locale: " + Locale.getDefault()+"<br/>");
select nd.uuid, nd.name, ndv.checksum from NodeDocument nd, NodeDocumentVersion ndv where nd.uuid = ndv.parent and ndv.checksum in 
  (select ndv.checksum from NodeDocumentVersion ndv where ndv.current = true group by ndv.checksum having count(ndv.checksum) > 1) 
order by nd.name;

TO DO

Books

See also