aboutsummaryrefslogtreecommitdiffstats
path: root/sql/dump_unmatched_glutton_pdf.sql
blob: d089c7eb622396ae82a00e193f8e7d03733ff6a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

-- Run like:
--   psql sandcrawler < THING.sql > THING.2019-09-23.json

BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE READ ONLY DEFERRABLE;

COPY (
  SELECT row_to_json(grobid)
  FROM grobid
  LEFT JOIN fatcat_file ON grobid.sha1hex = fatcat_file.sha1hex
  WHERE fatcat_file.sha1hex IS NULL
  AND grobid.fatcat_release IS NOT NULL
  LIMIT 1000
)
TO '/grande/snapshots/dump_unmatched_glutton_pdf.2020-06-30.json';
--TO STDOUT
--WITH NULL '';

ROLLBACK;