Update notes for 2018-11-19

This commit is contained in:
2018-11-19 17:25:08 +02:00
parent 95ae6a1098
commit 4e5e1ad4a6
3 changed files with 21 additions and 8 deletions

View File

@ -326,4 +326,10 @@ $ ./delete-metadata-values.py -i 2018-11-19-delete-agrovoc.csv -f dc.subject -m
$ time schedtool -D -e ionice -c2 -n7 nice -n19 dspace index-discovery -b
```
- Generate a new list of the top 1500 AGROVOC subjects on CGSpace to send to Peter and Sisay:
```
dspace=# \COPY (SELECT DISTINCT text_value, count(*) FROM metadatavalue WHERE metadata_field_id = 57 AND resource_type_id = 2 GROUP BY text_value ORDER BY count DESC LIMIT 1500) to /tmp/2018-11-19-top-1500-subject.csv WITH CSV HEADER;
```
<!-- vim: set sw=2 ts=2: -->