Merge "Issue #1051 Upgrade script for bufrmos invalid locations. Change-Id: I78b29e173654d0066852b650d4d791920fc07977" into development
Former-commit-id: f19ce489e7a0f3b671cb8a85cc445d48c6fc5f91
This commit is contained in:
commit
f2b63d24b1
1 changed files with 11 additions and 0 deletions
11
deltaScripts/13.6.1/bufrmosValidation.sh
Normal file
11
deltaScripts/13.6.1/bufrmosValidation.sh
Normal 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;"
|
Loading…
Add table
Reference in a new issue