通过命令行运行SSIS包,用户输入作为变量

时间:2014-02-04 13:50:26

标签: sql-server batch-file ssis

我想将文件从一个位置移动到另一个位置,在我的SSIS包中,我已将源设置为文件系统任务。我创建了一个名为Path的变量

C:\ Users \ VishalJethwa \ Documents \ Projects \ Batch File SSIS Package Executer \

和一个名为Destination的空白变量(将是cmd中设置的文件夹名称),最后是一个完整路径变量,它将两者连接在一起以形成文件系统任务中的目标属性。我尝试了以下操作,以便用户输入他们想要将文件移动到的文件夹名称,但它似乎无法正常工作。我收到了错误

,这是错误消息Microsoft(R)SQL Server执行包实用程序 64位版本10.50.1600.1 版权所有(C)Microsoft Corporation 2010.保留所有权利。

开始时间:13:55:48 错误:2014-02-04 13:55:48.81    代码:0xC002F304    来源:移动文件文件系统任务    说明:出现以下错误消息时出错:“无法执行f ind文件'C:\ Users \ VishalJethwa \ Documents \ Projects \ Batch文件SSIS包执行 之三\来源\ Plank.txt”。“ 结束错误 进展:2014-02-04 13:55:48.81    来源:移动文件    操作完成:100%完成 结束进展 警告:2014-02-04 13:55:48.81    代码:0x80019002    来源:移动文件    描述:SSIS警告代码DTS_W_MAXIMUMERRORCOUNTREACHED。执行  方法成功,但引发的错误数(1)达到最大允许值 ed(1);导致失败。当错误的数量达到时,就会发生这种情况 MaximumErrorCount中指定的数字。更改MaximumErrorCount或修复e rrors。 结束警告 警告:2014-02-04 13:55:48.81    代码:0x80019002    来源:BatchFileTest    描述:SSIS警告代码DTS_W_MAXIMUMERRORCOUNTREACHED。执行  方法成功,但引发的错误数(1)达到最大允许值 ed(1);导致失败。当错误的数量达到时,就会发生这种情况 MaximumErrorCount中指定的数字。更改MaximumErrorCount或修复e rrors。 结束警告 DTExec:包执行返回DTSER_FAILURE(1)。 开始时间:13:55:48 完成时间:13:55:48 经过:0.125秒 '/ SET'未被识别为内部或外部命令, 可操作程序或批处理文件。

以下是我的批处理文件中的代码

@ECHO OFF
SET /p Loc = What folder do you wish to copy it to?: 
DTEXEC /FILE "C:\Users\Admin\Documents\Projects\Batch File SSIS Package Executer\BatchFileTest\BatchFileTest\BatchFileTest.dtsx" 
/SET "\package.Variables[User::Destination].Value";Loc
pause

有什么想法吗?

2 个答案:

答案 0 :(得分:4)

你有3个问题。

发出第一个

在等待对我评论的回应时,我的主要假设是这是一个套管问题。 SSIS包中的实体区分大小写。

列出的代码尝试将\package.Variables的值设置为值。没有可用的包,只有包

因此/SET "\Package.Variables[User::Destination].Value";Loc

你可能还希望在双引号下传递Loc,除非它是DOS 8.3样式名称。

发出第二个

Loc的使用将是文字字符串Loc。您需要使用变量%Loc%

发出第三个

您没有为Loc分配值。在DOS中等号之间不能有空格

最终结果

我使用单个脚本任务创建了一个示例包SetDestination,它只执行使用OnInformation事件触发Destination的值。那里的代码只是

    public void Main()
    {
        bool fireAgain = false;
        Dts.Events.FireInformation(0, "emit", string.Format("Destination: {0}", Dts.Variables[0].Value.ToString()), string.Empty, 0, ref fireAgain);
        Dts.TaskResult = (int)ScriptResults.Success;
    }

然后我将您的批处理文件修改为

@ECHO OFF
set loc=unset
SET /p Loc=What folder do you wish to copy it to?:
"C:\Program Files (x86)\microsoft sql server\110\dts\binn\dtexec.exe" /FILE "C:\Users\bfellows\Documents\Visual Studio 2012\Projects\SSISPOC\PackageDeploymentModel\SetDestination.dtsx"  /SET "\Package.Variables[User::Destination].Value";"%Loc%" /rep i
pause

执行结果

What folder do you wish to copy it to?:Stuff
Microsoft (R) SQL Server Execute Package Utility
Version 11.0.3401.0 for 32-bit
Copyright (C) Microsoft Corporation. All rights reserved.

Started:  8:23:15 AM
Info: 2014-02-04 08:23:15.84
   Code: 0x00000000
   Source: SCR Emit emit
   Description: Destination: Stuff
End Info
DTExec: The package execution returned DTSER_SUCCESS (0).
Started:  8:23:15 AM
Finished: 8:23:15 AM
Elapsed:  0.188 seconds
Press any key to continue . . .

BIML

对于那些在家中关注的人,假设您已安装免费Bids Helper添加,则以下Biml会创建参考包。使用上面的批处理文件,使用更正的.dtsx位置和SQL Server版本来调用它,你应该得到与我相同的结果。

<Biml xmlns="http://schemas.varigence.com/biml.xsd">
    <Packages>
        <Package Name="SetDestination" ConstraintMode="Parallel" ProtectionLevel="DontSaveSensitive">
            <Variables>
                <Variable DataType="String" Name="Destination"></Variable>
            </Variables>
            <Tasks>
                <Script ProjectCoreName="ST_232fecafb70a4e8a904cc21f8870eed0" Name="SCR Emit Destination">
                    <ReadOnlyVariables>
                        <ReadOnlyVariable VariableName="User.Destination" />
                    </ReadOnlyVariables>
                    <ScriptTaskProject>
                        <ScriptTaskProject ProjectCoreName="ST_c41ad4bf47544c49ad46f4440163feae" Name="TaskScriptProject1">
                            <AssemblyReferences>
                                <AssemblyReference AssemblyPath="Microsoft.SqlServer.ManagedDTS.dll" />
                                <AssemblyReference AssemblyPath="Microsoft.SqlServer.ScriptTask.dll" />
                                <AssemblyReference AssemblyPath="System.dll" />
                                <AssemblyReference AssemblyPath="System.AddIn.dll" />
                                <AssemblyReference AssemblyPath="System.Data.dll" />
                                <AssemblyReference AssemblyPath="System.Windows.Forms.dll" />
                                <AssemblyReference AssemblyPath="System.Xml.dll" />
                            </AssemblyReferences>
                            <Files>
                                <File Path="AssemblyInfo.cs">
                                    using System.Reflection;
                                    using System.Runtime.CompilerServices;

                                    //
                                    // General Information about an assembly is controlled through the following
                                    // set of attributes. Change these attribute values to modify the information
                                    // associated with an assembly.
                                    //
                                    [assembly: AssemblyTitle("ST_c41ad4bf47544c49ad46f4440163feae.csproj")]
                                    [assembly: AssemblyDescription("")]
                                    [assembly: AssemblyConfiguration("")]
                                    [assembly: AssemblyCompany("Varigence")]
                                    [assembly: AssemblyProduct("ST_c41ad4bf47544c49ad46f4440163feae.csproj")]
                                    [assembly: AssemblyCopyright("Copyright @ Varigence 2013")]
                                    [assembly: AssemblyTrademark("")]
                                    [assembly: AssemblyCulture("")]
                                    //
                                    // Version information for an assembly consists of the following four values:
                                    //
                                    //      Major Version
                                    //      Minor Version
                                    //      Build Number
                                    //      Revision
                                    //
                                    // You can specify all the values or you can default the Revision and Build Numbers
                                    // by using the '*' as shown below:

                                    [assembly: AssemblyVersion("1.0.*")]
                                </File>
                                <File Path="ScriptMain.cs">
                                    using System;
                                    using System.Data;
                                    using Microsoft.SqlServer.Dts.Runtime;
                                    using System.Windows.Forms;

                                    // if SSIS2012, use the following line:
                                    [Microsoft.SqlServer.Dts.Tasks.ScriptTask.SSISScriptTaskEntryPointAttribute]

                                    // if earlier version, use the next line instead of the above line:
                                    // [System.AddIn.AddIn("ScriptMain", Version = "1.0", Publisher = "", Description = "")]
                                    public partial class ScriptMain : Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
                                    {
                                    enum ScriptResults
                                    {
                                    Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success,
                                    Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
                                    };

                                    public void Main()
                                    {
                                    bool fireAgain = false;
                                    Dts.Events.FireInformation(0, "emit", string.Format("Destination: {0}", Dts.Variables[0].Value.ToString()), string.Empty, 0, ref fireAgain);
                                    Dts.TaskResult = (int)ScriptResults.Success;
                                    }
                                    }
                                </File>
                            </Files>
                        </ScriptTaskProject>
                    </ScriptTaskProject>
                </Script>
            </Tasks>
        </Package>
    </Packages>
</Biml>

答案 1 :(得分:1)

我认为你错过了%

周围的Loc
@ECHO OFF
SET /p Loc = What folder do you wish to copy it to?: 
DTEXEC /FILE "C:\Users\Admin\Documents\Projects\Batch File SSIS Package Executer\BatchFileTest\BatchFileTest\BatchFileTest.dtsx" 
/SET "\package.Variables[User::Destination].Value";"%Loc%"
pause

正如billinkc所说,如果你要发送一个包含空格的位置,将它们放在""中会有所帮助。