awips2/deltaScripts/16.4.1/DR5983/remove_stringvalue_index.sh

10 lines
227 B
Bash
Raw Normal View History

2022-05-05 12:34:50 -05:00
#!/bin/sh
# DR 5983 - Remove ebxml.stringvalue_index
PSQL=/awips2/psql/bin/psql
USER=awipsadmin
echo "Dropping stringvalue_index from ebxml.value"
$PSQL -d metadata -U $USER -c "drop index if exists ebxml.stringvalue_index"