ssis的數據分流,mark一下

https://docs.microsoft.com/zh-cn/sql/integration-services/data-flow-taps?view=sql-server-2014

ssis的數據分流,mark一下

 

 

點擊右鍵執行,產生對應的腳本代碼信息

Declare @execution_id bigint
EXEC [SSISDB].[catalog].[create_execution] @package_name=N'T104.dtsx', @execution_id=@execution_id OUTPUT, @folder_name=N'T1', @project_name=N'SSIS_TEST001', @use32bitruntime=False, @reference_id=Null
Select @execution_id
DECLARE @var0 smallint = 1
EXEC [SSISDB].[catalog].[set_execution_parameter_value] @execution_id,  @object_type=50, @parameter_name=N'LOGGING_LEVEL', @parameter_value=@var0
EXEC [SSISDB].[catalog].[start_execution] @execution_id
GO

 

SSIS  script调用

#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 System.Text;
using System.Data;
using System.Data.SqlClient;
#endregion

namespace ST_3ca2bd5a17994630a0bb34c0eb1a5db6
{
    /// <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()
        {
            // TODO: Add your code here
            bool fireAgain = false;
            Dts.Events.FireInformation(101, "ExecServerNodeJob", "Ready", "", 0, ref fireAgain);
            int iRst = ExecJob("test123", true);

 


            Dts.TaskResult = (int)ScriptResults.Success;

 


        }

 

        private static int ExecJob(string pmId, bool isUse32bit)
        {
            string sNodeCnn =
                   string.Format("Data Source=xxxxx\\SQL2012;Initial Catalog=SSISDB;Integrated Security=SSPI;Max Pool Size=8000;");
            SqlConnection sqlcon = new SqlConnection(sNodeCnn);
            StringBuilder sqlbdr = new StringBuilder();

            //Declare @execution_id bigint
            sqlbdr.AppendLine("Declare @execution_id bigint");
            //EXEC [SSISDB].[catalog].[create_execution]
            sqlbdr.AppendLine("EXEC [SSISDB].[catalog].[create_execution]");
            //@package_name=N'E101_SvrNode_TTop_GetData.dtsx',  
            sqlbdr.AppendLine("@package_name=N'T5_catalog_ed.dtsx',");
            //@folder_name=N'�I���q���������',
            sqlbdr.AppendLine("@folder_name=N'GsTest',");
            //@project_name=N'ETLServerNode',
            sqlbdr.AppendLine("@project_name=N'SSIS_TEST001', ");
            //@execution_id=@execution_id OUTPUT,
            sqlbdr.AppendLine("@execution_id=@execution_id OUTPUT,");
            //@use32bitruntime=False, @reference_id=Null
            if (isUse32bit)
                sqlbdr.AppendLine("@use32bitruntime=True, @reference_id=Null");
            else
                sqlbdr.AppendLine("@use32bitruntime=False, @reference_id=Null");
            //Select @execution_id
            sqlbdr.AppendLine("Select ExecId=@execution_id");
            //DECLARE @var1 smallint = 1
            sqlbdr.AppendLine("DECLARE @var1 smallint = 1");
            //EXEC [SSISDB].[catalog].[set_execution_parameter_value] @execution_id,  @object_type=50,
            sqlbdr.AppendLine("EXEC [SSISDB].[catalog].[set_execution_parameter_value] @execution_id,  @object_type=50,");
            //@parameter_name=N'LOGGING_LEVEL', @parameter_value=@var1
            sqlbdr.AppendLine("@parameter_name=N'LOGGING_LEVEL', @parameter_value=@var1");
            //EXEC [SSISDB].[catalog].[start_execution] @execution_id
            sqlbdr.AppendLine("EXEC [SSISDB].[catalog].[start_execution] @execution_id");
            SqlCommand sqlcmd = new SqlCommand(sqlbdr.ToString(), sqlcon);
            SqlDataAdapter adp = new SqlDataAdapter(sqlcmd);
            DataSet ds = new System.Data.DataSet();
            adp.Fill(ds);
            DataTable dt = ds.Tables[0];
            adp.Dispose();
            sqlcmd.Dispose();
            if (dt.Rows.Count > 0)
                return int.Parse(dt.Rows[0]["ExecId"].ToString());
            else
                return 0;

        }

        #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

    }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值