通过SSIS连接到SFTP

may*_*y-z 4 sftp ssis winscp ssis-2012

我正在尝试SFTP通过SSIS软件包连接到服务器。程序包WinSCP使用.txt文件中的以下连接字符串执行:

open sftp://username:fc$#6444@example.com:22
Run Code Online (Sandbox Code Playgroud)

但是,该软件包一直无法连接而失败。与密码中的特殊字符有关吗?

如果替换字符串,则可以连接到其他SFTP,因此我知道它一定与上面的语法有关。我尝试将双引号放在字符串周围,如下所示,但未成功:

open "sftp://username:fc$#6444@example.com:22"
Run Code Online (Sandbox Code Playgroud)

Shi*_*iva 5

对于最近的一个工作项目,我也必须这样做。我们在WinSCP .NET assembly内部使用了SSIS脚本任务,因为这也是WinSCP推荐的,它是在SSIS中使用WinSCP实现SFTP的方法。

请参阅本指南- 使用SQL Server Integration Services(SSIS)中的WinSCP .NET程序集。它引导您完成安装和设置,并包含有效的示例代码(当然,在您更改脚本后!)。

下面是示例代码(在引用WinSCPnet.dll程序集之后)。

using System;
using Microsoft.SqlServer.Dts.Runtime;
using Microsoft.SqlServer.Dts.Tasks.ScriptTask;
using System.AddIn;
using WinSCP;

namespace ST_5a30686e70c04c5a8a93729fd90b8c79.csproj
{
    [AddIn("ScriptMain", Version = "1.0", Publisher = "", Description = "")]
    public partial class ScriptMain : VSTARTScriptObjectModelBase
    {
        public void Main()
        {
            // Setup session options
            SessionOptions sessionOptions = new SessionOptions
            {
                Protocol = Protocol.Sftp,
                // To setup these variables, go to SSIS > Variables.
                // To make them accessible from the script task, in the context menu of the task,
                // choose Edit. On the Script task editor on Script page, select ReadOnlyVariables,
                // and tick the below properties.
                HostName = (string) Dts.Variables["User::HostName"].Value,
                UserName = (string) Dts.Variables["User::UserName"].Value,
                Password = (string) Dts.Variables["User::Password"].Value,
                SshHostKeyFingerprint = (string) Dts.Variables["User::SshHostKeyFingerprint"].Value
            };

            try
            {
                using (Session session = new Session())
                {
                    // As WinSCP .NET assembly has to be stored in GAC to be used with SSIS,
                    // you need to set path to WinSCP.exe explicitly, if using non-default location.
                    session.ExecutablePath = @"C:\winscp\winscp.exe";

                    // Connect
                    session.Open(sessionOptions);

                    // Upload files
                    TransferOptions transferOptions = new TransferOptions();
                    transferOptions.TransferMode = TransferMode.Binary;

                    TransferOperationResult transferResult;
                    transferResult = session.PutFiles(@"d:\toupload\*", "/home/user/", false, transferOptions);

                    // Throw on any error
                    transferResult.Check();

                    // Print results
                    bool fireAgain = false;
                    foreach (TransferEventArgs transfer in transferResult.Transfers)
                    {
                        Dts.Events.FireInformation(0, null, 
                            string.Format("Upload of {0} succeeded", transfer.FileName),
                            null, 0, ref fireAgain);
                    }
                }

                Dts.TaskResult = (int)DTSExecResult.Success;
            }
            catch (Exception e)
            {
                Dts.Events.FireError(0, null,
                    string.Format("Error when using WinSCP to upload files: {0}", e),
                    null, 0);

                Dts.TaskResult = (int)DTSExecResult.Failure;
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

  • @vikrantrana是的,可以。如果您有问题,请发布一个新问题,并确保您包含实际的异常消息(调用的目标已抛出*“ Exception”的内部异常“ *)或会话日志文件(`Session.SessionLogPath` )。 (2认同)