IBM Infosphere バージョン 8 がインストールされたばかりの新しい UNIX サーバーで ksh スクリプトを実行すると、SIGSEGV エラーが発生します。UNIX スクリプトが構成ファイルの抽出日時を更新すると、エラーが発生します。スクリプトは、Datastage シーケンスによって呼び出されます。
スクリプトは、「プログラム "/bin/sh" が終了しました。[SIGSEGV] セグメンテーション違反」という問題で中止されます。
この問題を Web 検索すると、この問題はメモリへの無効な参照が原因であることがわかります。
以下は、スクリプトを実行するコマンドです。
"ksh shUpdate_Config.sh MEARS MSDS_MP_ATTRIBUTES_BS_VW /data/projects/scver_etl/EXTRACTS_pub/configurationfiles/MEARS.MSDS_MP_ATTRIBUTES_BS_VW.Lastupdseqno.dat /data/projects/scver_etl/EXTRACTS_pub/configurationfiles/ '2012-08-08 12:35:24'"
スクリプトの内容は次のとおりです-
#!/bin/ksh
#########################################################################
#Script Name:-shUpdate_Config.sh
#
#Script Description:- The script updates the STATUS_TABLE with the Extraction Date time and updates the sequence number by 1.
#
#Created By:- Vineet
#
#Job History:-
#
#Sl No Version Modification Date Modified by Modification Desc
#01. Initial 11/04/2012 Vineet Initial Version
#########################################################################################################################################
if [ $# -ne 5 ]
then
print "Incorrect number of parameters passed, Quiting ..."
exit 1
fi
# Enter the Source Id From the user
srcid=$1
# Enter the source table name by user
tabnme=$2
# Enter the Status File Name from User
filename=$3
#Enter the Temp file Path from User
file_path=$4
#Enter the Server time to be updated
Server_datetime=$5
if [ ! -f $filename ]
then
print "Configuration File not present at the required path, Quiting ..."
exit 1
fi
grep $srcid $filename >> /dev/null
if [ $? -ne 0 ]
then
print "Source system name not found in configuration file, Quiting ..."
exit 1
fi
grep $tabnme $filename >> /dev/null
if [ $? -ne 0 ]
then
print "Source view name not found in configuration file, Quiting ..."
exit 1
fi
while [ 1 ]
do
if [ -f $filename.lock ]
then
sleep 60
else
break
fi
done
touch $filename.lock
DT=`echo $Server_datetime|cut -c1-10`
TM=`echo $Server_datetime|cut -c12-19`
awk '{FS="|";OFS="|"};{a=$3;b=$4;if ($1=="'$srcid'"&& $2=="'$tabnme'") {$3=a+1;$4="'$DT'"" ""'$TM'"} else{}{print $0}}' $filename > $file_path$srcid.$tabnme.tmp
if [ $? -ne 0 ]
then
print "Process failed, Quiting ..."
/bin/rm $filename.lock
exit 1
fi
#fi
mv $file_path$srcid.$tabnme.tmp $filename
if [ $? -ne 0 ]
then
print "Process failed, Quiting ..."
/bin/rm $filename.lock
exit 1
fi
/bin/rm $filename.lock
if [ $? -ne 0 ]
then
print "Process failed, Quiting ..."
exit 1
fi
exit 0
更新しようとしているファイル (MEARS MSDS_MP_EVENTS_BS_VW Lastupdseqno) の内容は次のとおりです -
Source_sys_name|Source_tbl_name|Seq_No|Extraction_date|Extraction_Mode
MEARS|MSDS_MP_EVENTS_BS_VW|37|2012-08-08 11:51:19|D
助けてください!