Update notes

This commit is contained in:
2018-01-09 10:02:52 +01:00
parent f1fafb80a4
commit 13460b8466
3 changed files with 19 additions and 8 deletions

View File

@ -275,3 +275,9 @@ org.dspace.discovery.SearchServiceException: org.apache.solr.search.SyntaxError:
## 2018-01-09
- Advise Sisay about blank lines in some IITA records
- Generate a list of author affiliations for Peter to clean up:
```
dspace=# \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 = 'affiliation') AND resource_type_id = 2 group by text_value order by count desc) to /tmp/affiliations.csv with csv;
COPY 4515
```