That's what I said: when a shell is started through crontab the regular environment variables aren't loaded so you have tot do that manually.
Try to find the location of the dbaccess program with:
This should be in $INFORMIXDIR/bin. The $INFORMIXDIR value is decided during server installation and is usually NOT /home/informix! Check the environment of your interactive shell!!!
Then append this directory to the PATH variable with:
Code:
export PATH="${PATH}:${INFORMIXDIR}/bin"
Write this in the script that's executed by crontab.
Regards