Issue #1051 Upgrade script for bufrmos invalid locations.

Change-Id: I78b29e173654d0066852b650d4d791920fc07977

Former-commit-id: 0a8543b6fa [formerly ec3d2599a9c792be08ffdb67cb0de9330b37b04a]
Former-commit-id: db8989822e
This commit is contained in:
Ben Steffensmeier 2013-07-29 11:11:43 -05:00
parent 239033f268
commit ce726f0b0d

View file

@ -0,0 +1,11 @@
#!/bin/bash
# DR #1051 remove invalid bufrmos locations
PSQL="/awips2/psql/bin/psql"
${PSQL} -U awips -d metadata -c "DELETE FROM bufrmosmrf WHERE location_id IN (SELECT DISTINCT id FROM bufrmos_location WHERE latitude > 90 or latitude < -90);"
${PSQL} -U awips -d metadata -c "DELETE FROM bufrmoshpc WHERE location_id IN (SELECT DISTINCT id FROM bufrmos_location WHERE latitude > 90 or latitude < -90);"
${PSQL} -U awips -d metadata -c "DELETE FROM bufrmos_location WHERE latitude > 90 or latitude < -90;"
${PSQL} -U awips -d metadata -c "VACUUM FULL ANALYZE bufrmosmrf;"
${PSQL} -U awips -d metadata -c "VACUUM FULL ANALYZE bufrmoshpc;"
${PSQL} -U awips -d metadata -c "VACUUM FULL ANALYZE bufrmos_location;"