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 7249 aaronmk
)
11
/* list obtained using:
12 9501 aaronmk
SELECT DISTINCT dataprovider
13 7249 aaronmk
FROM sourcelist
14 9501 aaronmk
JOIN provider_count ON provider_count.dataprovider = sourcelist.name
15 7249 aaronmk
WHERE source_id = source_by_shortname('REMIB')
16 9501 aaronmk
ORDER BY dataprovider
17 7249 aaronmk
*/
18
;