I'm generating a tar file from my
java program which is executed from database(Oracle 10g).I'm using the Runtime.
aixCommand ="tar -cvf ccc.tat ccc.dat"
String[] aixCmds = new String[]{"sh", "-c", aixCommand };
I'm getting the following Exception :
java.io.IOException: can't exec:sh doesn't exist
Please help me out
Thanks in advance
Sujith