Linux Crontab 脚本中的可执行程序无法启动,该如何处理

Linux Crontab 脚本中的可执行程序无法启动
我做了一个定时任务,脚本如下:
cd /home/xj/XJ/CreatDataBase
mkdir 1111
./CreatData

创建文件夹能执行,但是最后一行的可执行程序不运行。在终端执行脚本就能运行,求大神指点
------解决思路----------------------
either use absolute path for your command or put the following at the beginning of crontab file

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

make sure the path for CreatData is on PATH