我在shell脚本(ksh)中需要这个功能。
i.logon问题
II。表不存在
iii.less no of columns / data issue
iv。如果生成任何错误文件
答案 0 :(得分:1)
For Checking Diretory出现
if [ -d "$YOUR_DIRECTORY" ]
then
#Operation when directory is present
else
#Operation when directory is not present
fi
用于检查目录是否可写
if [ -w "$YOUR_DIRECTORY"]
then
#Operation when directory is writeable
else
#Operation when directory is not writeable
fi
关于Oracle错误代码,如果您有环境,可以自行尝试。