Update notes for 2019-04-26

This commit is contained in:
2019-04-26 12:16:02 +03:00
parent 929922f09e
commit 2ec01d7f04
4 changed files with 31 additions and 13 deletions

View File

@ -985,4 +985,13 @@ dspace=# SELECT * FROM item WHERE item_id=74648;
- Communicate with Carlos Tejo from the Land Portal about the `/items/find-by-metadata-value` endpoint
- Run all system updates on DSpace Test (linode19) and reboot it
## 2019-04-26
- Export a list of authors for Peter to look through:
```
dspacetest=# # \copy (select distinct text_value, count(*) as count from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'contributor' and qualifier = 'author') AND resource_type_id = 2 group by text_value order by count desc) to /tmp/2019-04-26-all-authors.csv with csv header;
COPY 65752
```
<!-- vim: set sw=2 ts=2: -->