SSIS CozyRoc SFTP download files modified today

时间:2018-09-18 19:55:24

标签: sql-server ssis sftp ssis-2012

I've got CozyRoc installed for doing SFTP (among other things) on SQL Server 2012. I'm going to create a job that runs a SSIS package daily. With this package I want to download from a remote site only those files that have been modified today. I can't find any documentation on the CozyRoc SFTP task. Any suggestions?

Thanks!

1 个答案:

答案 0 :(得分:0)

我相信我已经找到了可行的方法。在我的SSIS包中,我创建了一个名为“ RemoteFilter”的变量。在此,我输入以下表达式:

"ModifiedTime >= #" + (dt_wstr,30)(dt_date)(dt_dbdate)dateadd("d", -4, getdate()) + "#"

然后在SFTP任务中,我说RemoteFilter是一个变量,然后选择了我刚刚创建的变量。我敢肯定,有一种更优雅,更简单的方法可以做到这一点,但这是可行的。 :)