awips2/deltaScripts/16.2.1/DR4360/alterAcarsDataURI.sh
Roger Ferrel 9797c7f2e0 Omaha #4360 Rename delta script's folder.
Change-Id: If551d6c39c7aca761200c1734dc537b912da3f84

Former-commit-id: 8ab4092c6a9059bbab59146f0d4c867d261b8efe
2015-08-04 09:46:56 -05:00

19 lines
514 B
Bash
Executable file

#!/bin/bash
# DR #4360 - this update script will alter the dataURI column from acars
PSQL="/awips2/psql/bin/psql"
cmdDir=`dirname $0`
source ${cmdDir}/commonFunctions.sh
table=acars
# table and constraint names from ACARSRecord.
echo "INFO: Start update of ${table} dataURI columns."
col=tailNumber
echo "INFO: Update ${table}' ${col}"
${PSQL} -U awips -d metadata -c "DELETE from ${table} where ${col} is NULL ; "
updateNotNullCol ${table} ${col}
echo "INFO: ${table} dataURI columns updated successfully"