Config file cannot be executed
hello all, my oracle report cannot be executed, giving
/u01/oracle/prod/prodappl/wsh/11.5.0/bin/VSC_LPHK_SO for this concurrent program cannot be executed.
but I can't see any mistake here, can somebody please help thanks!
#!/bin/sh
counter=0
param_labels=NULL
PROGRAM=`basename $0`
for i in $1 $2 $3 $4 $5 $6 $7 $8 $9
do
LV_CURR_VAR=`echo $i | cut -d '"' -f 1`
LV_CURR_VALUE=`echo $i | cut -d '"' -f 2`
param_labels=NULL
if test "$LV_CURR_VAR" = ""
then
LV_CURR_VAR=`echo $i | cut -d '=' -f 1 | cut -d '"' -f 2`
LV_CURR_VALUE=`echo $i | cut -d '=' -f 2`
0