ssis12脚本任务在Visual Studio中工作但在sql代理中失败

时间:2015-05-28 13:50:41

标签: c# ssis

更新

我已删除try catch,因此会暴露任何错误。并按语句注释掉语句,最后找到问题陈述

    WB = _Excel.Workbooks.Open("D:\\temp\\TempSSIS\\zip\\test.xlsx",
                        Type.Missing, Type.Missing, Type.Missing, Type.Missing,
                        Type.Missing, Type.Missing, Type.Missing, Type.Missing,
                        Type.Missing, Type.Missing, Type.Missing, Type.Missing,
                        Type.Missing, Type.Missing);  

但不知道为什么。文件夹D:\ temp和所有文件或文件夹已经与具有读/写权限的所有人共享。

以下是SSIS目录执行报告的图片 enter image description here

我有一个测试SSIS(SQL Server 2012)项目,它有一个包,只有一个脚本任务。在此脚本任务中:

    #region Help:  Introduction to the script task
    /* The Script Task allows you to perform virtually any operation that can be accomplished in
     * a .Net application within the context of an Integration Services control flow. 
     * 
     * Expand the other regions which have "Help" prefixes for examples of specific ways to use
     * Integration Services features within this script task. */
    #endregion


    #region Namespaces
    using System;
    using System.Data;
    using Microsoft.SqlServer.Dts.Runtime;
    using System.Windows.Forms;
    using Excel = Microsoft.Office.Interop.Excel;
    #endregion

    namespace ST_c4cb3478c68843fca41e6f241a1431b4
    {
        /// <summary>
        /// ScriptMain is the entry point class of the script.  Do not change the name, attributes,
        /// or parent of this class.
        /// </summary>
        [Microsoft.SqlServer.Dts.Tasks.ScriptTask.SSISScriptTaskEntryPointAttribute]
        public partial class ScriptMain : Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
        {
            #region Help:  Using Integration Services variables and parameters in a script
            /* To use a variable in this script, first ensure that the variable has been added to 
             * either the list contained in the ReadOnlyVariables property or the list contained in 
             * the ReadWriteVariables property of this script task, according to whether or not your
             * code needs to write to the variable.  To add the variable, save this script, close this instance of
             * Visual Studio, and update the ReadOnlyVariables and 
             * ReadWriteVariables properties in the Script Transformation Editor window.
             * To use a parameter in this script, follow the same steps. Parameters are always read-only.
             * 
             * Example of reading from a variable:
             *  DateTime startTime = (DateTime) Dts.Variables["System::StartTime"].Value;
             * 
             * Example of writing to a variable:
             *  Dts.Variables["User::myStringVariable"].Value = "new value";
             * 
             * Example of reading from a package parameter:
             *  int batchId = (int) Dts.Variables["$Package::batchId"].Value;
             *  
             * Example of reading from a project parameter:
             *  int batchId = (int) Dts.Variables["$Project::batchId"].Value;
             * 
             * Example of reading from a sensitive project parameter:
             *  int batchId = (int) Dts.Variables["$Project::batchId"].GetSensitiveValue();
             * */

            #endregion

            #region Help:  Firing Integration Services events from a script
            /* This script task can fire events for logging purposes.
             * 
             * Example of firing an error event:
             *  Dts.Events.FireError(18, "Process Values", "Bad value", "", 0);
             * 
             * Example of firing an information event:
             *  Dts.Events.FireInformation(3, "Process Values", "Processing has started", "", 0, ref fireAgain)
             * 
             * Example of firing a warning event:
             *  Dts.Events.FireWarning(14, "Process Values", "No values received for input", "", 0);
             * */
            #endregion

            #region Help:  Using Integration Services connection managers in a script
            /* Some types of connection managers can be used in this script task.  See the topic 
             * "Working with Connection Managers Programatically" for details.
             * 
             * Example of using an ADO.Net connection manager:
             *  object rawConnection = Dts.Connections["Sales DB"].AcquireConnection(Dts.Transaction);
             *  SqlConnection myADONETConnection = (SqlConnection)rawConnection;
             *  //Use the connection in some code here, then release the connection
             *  Dts.Connections["Sales DB"].ReleaseConnection(rawConnection);
             *
             * Example of using a File connection manager
             *  object rawConnection = Dts.Connections["Prices.zip"].AcquireConnection(Dts.Transaction);
             *  string filePath = (string)rawConnection;
             *  //Use the connection in some code here, then release the connection
             *  Dts.Connections["Prices.zip"].ReleaseConnection(rawConnection);
             * */
            #endregion


            /// <summary>
            /// This method is called when this script task executes in the control flow.
            /// Before returning from this method, set the value of Dts.TaskResult to indicate success or failure.
            /// To open Help, press F1.
            /// </summary>
            public void Main()
            {

                Excel.Application _Excel = null;
                Excel.Workbook WB = null;
                Excel.Worksheet WS;

                try
                {

                    _Excel = new Microsoft.Office.Interop.Excel.Application();
                    WB = _Excel.Workbooks.Open("D:\\temp\\TempSSIS\\zip\\test.xlsx",
                        Type.Missing, Type.Missing, Type.Missing, Type.Missing,
                        Type.Missing, Type.Missing, Type.Missing, Type.Missing,
                        Type.Missing, Type.Missing, Type.Missing, Type.Missing,
                        Type.Missing, Type.Missing);

                    //do something
                    WB.Password = "123";
                    WB.SaveAs("D:\\temp\\TempSSIS\\zip\\test_1.xlsx");
                }
                catch (Exception ex)
                {
                    WB.Close(false, Type.Missing, Type.Missing);

                    throw;
                }
                finally
                {
                    GC.Collect();
                    GC.WaitForPendingFinalizers();

                    System.Runtime.InteropServices.Marshal.FinalReleaseComObject(WB);

                    System.Runtime.InteropServices.Marshal.FinalReleaseComObject(_Excel);


                }

                Dts.TaskResult = (int)ScriptResults.Success;
            }

            #region ScriptResults declaration
            /// <summary>
            /// This enum provides a convenient shorthand within the scope of this class for setting the
            /// result of the script.
            /// 
            /// This code was generated automatically.
            /// </summary>
            enum ScriptResults
            {
                Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success,
                Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
            };
            #endregion

        }
    }

该脚本打开现有的Excel文件并为excel添加密码。这在VS中工作正常,但是当我从SQL Server作业代理运行它时失败。该作业在sql server代理帐户上运行,该帐户可以访问该文件。来自作业代理的错误消息:

信息 以用户身份执行:BCSGRS \ SQLService。 Microsoft(R)SQL Server执行包实用程序版本11.0.3381.0(适用于64位版权所有(C)Microsoft Corporation)。版权所有。开始时间:14:36:03 IS服务器上的包执行失败。执行ID:70,执行状态:4。要查看执行的详细信息,请右键单击Integration Services目录,然后打开[All Executions]报告已启动:14:36:03已完成:14:36:07经过:4.196秒。包执行失败。步骤失败了。

我在Integration Services目录的报告中找到的唯一内容是脚本任务:错误:调用目标已抛出异常。

0 个答案:

没有答案