1
|
CREATE INDEX ON :table (acronym);
|
2
|
|
3
|
-- Remove institutions that we have direct data for
|
4
|
DELETE FROM :table
|
5
|
WHERE acronym IN (
|
6
|
-- Comments are from e-mail from Brad Boyle on 2013-1-16
|
7
|
'MO' -- "all MO records in REMIB are also available from MO's own website"
|
8
|
--, 'ARIZ' -- Some REMIB ARIZ specimens not yet in ARIZ itself
|
9
|
--, 'NY' -- Some REMIB NY specimens not yet in NY itself
|
10
|
, 'TEX'
|
11
|
)
|
12
|
/* list obtained using the following on r9459:
|
13
|
SELECT DISTINCT dataprovider
|
14
|
FROM sourcelist
|
15
|
JOIN provider_count ON provider_count.dataprovider = sourcelist.name
|
16
|
WHERE source_id = source_by_shortname('REMIB')
|
17
|
ORDER BY dataprovider
|
18
|
*/
|
19
|
;
|