i'm trying to transfer my data from TXT that i generate in a Data flow task to FTP library and can't do it
If i use Execute Process Task i must execute a File1.bat:
@echo off
ftp -s:fileName.txt -n
and fileName do it:
open
172.16.60.223
user
username
password
put \\dappwstd2008\paso\Esteban_Entregas\Clientes\fileName.txt BICCONVER1/CVCUREL
close
bye
If i execute the file1.bat works correctly, but can't do it with SSIS.
i tried to do the following:
Execute Process Task
Executable: D:\Users\MyName\Desktop\file1.bat
Argument: "fileName.txt"
[Execute Process Task] Error: In Executing D:\Users\EDonosoV\Desktop\file1.bat" ""fileName.txt"" at "", The process exit code was "2" while the expected was "0".
i change success value to 2 and work but CMD do nothing
Any solution?, i tried using the code of the TXT in FTP Task and have problem with RemotePath because my destiny is a library and can't open it
Thanks!