Add notes for 2018-07-13

This commit is contained in:
2018-07-13 19:45:58 +03:00
parent e1515963ea
commit 36382f34b6
3 changed files with 27 additions and 8 deletions

View File

@ -325,4 +325,13 @@ $ csvcut -c 1 < /tmp/affiliations.csv > /tmp/affiliations-1.csv
- We also need to discuss standardizing our countries and comparing our ORCID iDs
## 2018-07-13
- Generate a list of affiliations for Peter and Abenet to go over so we can batch correct them before we deploy the new data visualization dashboard:
```
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 header;
COPY 4518
```
<!-- vim: set sw=2 ts=2: -->