Error on executable batch file in Oracle Scheduler
I would like to schedule a batch file to run as part of a chain job (it finishes a process by moving data from one directory on a windows machine to another directory). Creating the chain job isn't the problem, but my program fails every time I attempt to run it. I found out that the batch file runs part of the script fine, but fails on a move command.
This works:
echo "copy files to New DAX"
echo off
sfxcl.exe /log new_dax.log e:\DAX\* /s new_dax /
rem echo "Move files from E:\DAX to E\Dax_Archive"
0