Project

General

Profile

1 7249 aaronmk
CREATE INDEX ON :table (acronym);
2
3
-- Remove institutions that we have direct data for
4
DELETE FROM :table
5
WHERE acronym IN (
6 7250 aaronmk
    -- 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 9502 aaronmk
    , 'TEX'
11 7249 aaronmk
)
12 9502 aaronmk
/* list obtained using the following on r9459:
13 9501 aaronmk
SELECT DISTINCT dataprovider
14 7249 aaronmk
FROM sourcelist
15 9501 aaronmk
JOIN provider_count ON provider_count.dataprovider = sourcelist.name
16 7249 aaronmk
WHERE source_id = source_by_shortname('REMIB')
17 9501 aaronmk
ORDER BY dataprovider
18 7249 aaronmk
*/
19
;