diff --git a/content/post/2016-12.md b/content/post/2016-12.md index 3af8fbefc..13770f1d6 100644 --- a/content/post/2016-12.md +++ b/content/post/2016-12.md @@ -201,3 +201,29 @@ event.consumer.batchedit.filters = Community|Collection+Create ``` - I haven't tested it yet, but I created a pull request: [#289](https://github.com/ilri/DSpace/pull/289) + +## 2016-12-06 + +- Some author authority corrections and name standardizations for Peter: + +``` +dspace=# update metadatavalue set authority='b041f2f4-19e7-4113-b774-0439baabd197', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Mora Benard%'; +UPDATE 11 +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Hoek, R%'; +UPDATE 36 +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like '%an der Hoek%' and text_value !~ '^.*W\.?$'; +UPDATE 14 +dspace=# update metadatavalue set authority='18349f29-61b1-44d7-ac60-89e55546e812', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thorne, P%'; +UPDATE 42 +dspace=# update metadatavalue set authority='0d8369bb-57f7-4b2f-92aa-af820b183aca', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thornton, P%'; +UPDATE 360 +dspace=# update metadatavalue set text_value='Grace, Delia', authority='0b4fcbc1-d930-4319-9b4d-ea1553cca70b', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Grace, D%'; +UPDATE 561 +``` + +- Pay attention to the regex to prevent false positives in tricky cases with Dutch names! +- I will run these updates on DSpace Test and then force a Discovery reindex, and then run them on CGSpace next week +- More work on the KM4Dev Journal article +- In other news, it seems the batch edit patch is working, there are no more WARN errors in the logs and the batch edit seems to work +- I need to check the CGSpace logs to see if there are still errors there, and then deploy/monitor it there +- Paola from CCAFS mentioned she also has the "take task" bug on CGSpace diff --git a/public/2016-12/index.html b/public/2016-12/index.html index 36af94ed6..fb602b748 100644 --- a/public/2016-12/index.html +++ b/public/2016-12/index.html @@ -30,7 +30,7 @@ - + @@ -323,6 +323,35 @@ GC_TUNE="-XX:-UseSuperWord \
  • I haven’t tested it yet, but I created a pull request: #289
  • +

    2016-12-06

    + + + +
    dspace=# update metadatavalue set authority='b041f2f4-19e7-4113-b774-0439baabd197', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Mora Benard%';
    +UPDATE 11
    +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Hoek, R%';
    +UPDATE 36
    +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like '%an der Hoek%' and text_value !~ '^.*W\.?$';
    +UPDATE 14
    +dspace=# update metadatavalue set authority='18349f29-61b1-44d7-ac60-89e55546e812', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thorne, P%';
    +UPDATE 42
    +dspace=# update metadatavalue set authority='0d8369bb-57f7-4b2f-92aa-af820b183aca', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thornton, P%';
    +UPDATE 360
    +dspace=# update metadatavalue set text_value='Grace, Delia', authority='0b4fcbc1-d930-4319-9b4d-ea1553cca70b', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Grace, D%';
    +UPDATE 561
    +
    + + + diff --git a/public/index.xml b/public/index.xml index fd80071ec..08e4ac7aa 100644 --- a/public/index.xml +++ b/public/index.xml @@ -226,6 +226,35 @@ GC_TUNE=&quot;-XX:-UseSuperWord \ <ul> <li>I haven&rsquo;t tested it yet, but I created a pull request: <a href="https://github.com/ilri/DSpace/pull/289">#289</a></li> </ul> + +<h2 id="2016-12-06">2016-12-06</h2> + +<ul> +<li>Some author authority corrections and name standardizations for Peter:</li> +</ul> + +<pre><code>dspace=# update metadatavalue set authority='b041f2f4-19e7-4113-b774-0439baabd197', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Mora Benard%'; +UPDATE 11 +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Hoek, R%'; +UPDATE 36 +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like '%an der Hoek%' and text_value !~ '^.*W\.?$'; +UPDATE 14 +dspace=# update metadatavalue set authority='18349f29-61b1-44d7-ac60-89e55546e812', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thorne, P%'; +UPDATE 42 +dspace=# update metadatavalue set authority='0d8369bb-57f7-4b2f-92aa-af820b183aca', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thornton, P%'; +UPDATE 360 +dspace=# update metadatavalue set text_value='Grace, Delia', authority='0b4fcbc1-d930-4319-9b4d-ea1553cca70b', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Grace, D%'; +UPDATE 561 +</code></pre> + +<ul> +<li>Pay attention to the regex to prevent false positives in tricky cases with Dutch names!</li> +<li>I will run these updates on DSpace Test and then force a Discovery reindex, and then run them on CGSpace next week</li> +<li>More work on the KM4Dev Journal article</li> +<li>In other news, it seems the batch edit patch is working, there are no more WARN errors in the logs and the batch edit seems to work</li> +<li>I need to check the CGSpace logs to see if there are still errors there, and then deploy/monitor it there</li> +<li>Paola from CCAFS mentioned she also has the &ldquo;take task&rdquo; bug on CGSpace</li> +</ul> diff --git a/public/post/index.xml b/public/post/index.xml index e6fe45de2..999807ae6 100644 --- a/public/post/index.xml +++ b/public/post/index.xml @@ -226,6 +226,35 @@ GC_TUNE=&quot;-XX:-UseSuperWord \ <ul> <li>I haven&rsquo;t tested it yet, but I created a pull request: <a href="https://github.com/ilri/DSpace/pull/289">#289</a></li> </ul> + +<h2 id="2016-12-06">2016-12-06</h2> + +<ul> +<li>Some author authority corrections and name standardizations for Peter:</li> +</ul> + +<pre><code>dspace=# update metadatavalue set authority='b041f2f4-19e7-4113-b774-0439baabd197', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Mora Benard%'; +UPDATE 11 +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Hoek, R%'; +UPDATE 36 +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like '%an der Hoek%' and text_value !~ '^.*W\.?$'; +UPDATE 14 +dspace=# update metadatavalue set authority='18349f29-61b1-44d7-ac60-89e55546e812', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thorne, P%'; +UPDATE 42 +dspace=# update metadatavalue set authority='0d8369bb-57f7-4b2f-92aa-af820b183aca', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thornton, P%'; +UPDATE 360 +dspace=# update metadatavalue set text_value='Grace, Delia', authority='0b4fcbc1-d930-4319-9b4d-ea1553cca70b', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Grace, D%'; +UPDATE 561 +</code></pre> + +<ul> +<li>Pay attention to the regex to prevent false positives in tricky cases with Dutch names!</li> +<li>I will run these updates on DSpace Test and then force a Discovery reindex, and then run them on CGSpace next week</li> +<li>More work on the KM4Dev Journal article</li> +<li>In other news, it seems the batch edit patch is working, there are no more WARN errors in the logs and the batch edit seems to work</li> +<li>I need to check the CGSpace logs to see if there are still errors there, and then deploy/monitor it there</li> +<li>Paola from CCAFS mentioned she also has the &ldquo;take task&rdquo; bug on CGSpace</li> +</ul> diff --git a/public/tags/notes/index.xml b/public/tags/notes/index.xml index a47137b6d..d7adc0975 100644 --- a/public/tags/notes/index.xml +++ b/public/tags/notes/index.xml @@ -225,6 +225,35 @@ GC_TUNE=&quot;-XX:-UseSuperWord \ <ul> <li>I haven&rsquo;t tested it yet, but I created a pull request: <a href="https://github.com/ilri/DSpace/pull/289">#289</a></li> </ul> + +<h2 id="2016-12-06">2016-12-06</h2> + +<ul> +<li>Some author authority corrections and name standardizations for Peter:</li> +</ul> + +<pre><code>dspace=# update metadatavalue set authority='b041f2f4-19e7-4113-b774-0439baabd197', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Mora Benard%'; +UPDATE 11 +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Hoek, R%'; +UPDATE 36 +dspace=# update metadatavalue set text_value = 'Hoek, Rein van der', authority='4d6cbce2-6fd5-4b43-9363-58d18e7952c9', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like '%an der Hoek%' and text_value !~ '^.*W\.?$'; +UPDATE 14 +dspace=# update metadatavalue set authority='18349f29-61b1-44d7-ac60-89e55546e812', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thorne, P%'; +UPDATE 42 +dspace=# update metadatavalue set authority='0d8369bb-57f7-4b2f-92aa-af820b183aca', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Thornton, P%'; +UPDATE 360 +dspace=# update metadatavalue set text_value='Grace, Delia', authority='0b4fcbc1-d930-4319-9b4d-ea1553cca70b', confidence=600 where resource_type_id=2 and metadata_field_id=3 and text_value like 'Grace, D%'; +UPDATE 561 +</code></pre> + +<ul> +<li>Pay attention to the regex to prevent false positives in tricky cases with Dutch names!</li> +<li>I will run these updates on DSpace Test and then force a Discovery reindex, and then run them on CGSpace next week</li> +<li>More work on the KM4Dev Journal article</li> +<li>In other news, it seems the batch edit patch is working, there are no more WARN errors in the logs and the batch edit seems to work</li> +<li>I need to check the CGSpace logs to see if there are still errors there, and then deploy/monitor it there</li> +<li>Paola from CCAFS mentioned she also has the &ldquo;take task&rdquo; bug on CGSpace</li> +</ul>