How to Put the date & time format files into SFTP server?
I am doing SFTP task in SSIS.
i am using the following script.
option batch abort
# Disable overwrite confirmations that conflict with the previous
option confirm off
# Connect using a password
# open sftp://MPesa:OXIVMP@123@Mysftpserver:22
# Connect
open sftp://MPesa:OXIVMP@123@MySftpserver:22
# Change remote directory
cd /MPesa/
# Force binary mode transfer
option transfer binary
# Download file to the local directory d:\
put D:\SCW_Reports\Oxigen.txt
# Disconnect
close
exit
The above code working fine.
How to put the Oxigen_03052013.txt format files.
i am using the following script.
option batch abort
# Disable overwrite confirmations that conflict with the previous
option confirm off
# Connect using a password
# open sftp://MPesa:OXIVMP@123@Mysftpserver:22
# Connect
open sftp://MPesa:OXIVMP@123@MySftpserver:22
# Change remote directory
cd /MPesa/
# Force binary mode transfer
option transfer binary
# Download file to the local directory d:\
put D:\SCW_Reports\Oxigen.txt
# Disconnect
close
exit
The above code working fine.
How to put the Oxigen_03052013.txt format files.