gpt4 book ai didi

variables - 有没有办法将总和传递给包级变量?

转载 作者:行者123 更新时间:2023-12-01 16:14:24 25 4
gpt4 key购买 nike

好的,我对 SSIS 还很陌生,我正在尝试将平面文件从一个系统转换为可导入另一个系统的文件。

此文件转换的一部分是使用标题记录。头记录由一些固定的成分和一些动态的成分组成。动态组件是记录计数和支付金额(以下表达式中的“PAYAMT”)。我正在尝试使用 header 属性表达式将 header 附加到详细记录。

"00 "+ REPLICATE("0",6-LEN((DT_STR,6,1252) @[User::RecordCountA1200])) + (DT_STR,6,1252) @[User::RecordCountA1200] + "PAYAMT” + “P1200000000000000000000”

支付金额字段是一种货币数据类型。我的第一个想法是使用聚合转换并将其存储在记录集目标中。我的汇总工作给出了正确的总和,但该变量只能存储为对象,而不是我最初期望的数字数据类型。我想计算所有记录的 PayAmount 总和,并将其放入名为 SumAmountA1200 的用户定义变量中。

是否可以将聚合转换中的值存储到其他类型的转换中,并将其转换为包级变量?我应该换一种方式去做吗?非常感谢任何反馈

最佳答案

第一个选项是使用连接到聚合转换的脚本转换。

您只能在数据流的执行前/后阶段访问 SSIS 变量。由于此限制,您的脚本将执行 Input0_ProcessInputRow 事件中的任何逻辑。在您非常具体的情况下,只会发送 1 行,您可能希望将 Row 中的值分配给类范围的成员变量。

在 PostExecute 方法中,您可以将变量的值赋给成员变量的值。

示例代码

此脚本是充当目标的脚本转换。我已将变量检查为读/写 (User::ExternalVariable) 并在输入/输出选项卡上,我从聚合中选择了列 (Column)。

using System;
using System.Data;
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
using Microsoft.SqlServer.Dts.Runtime.Wrapper;

/// <summary>
/// This is the class to which to add your code. Do not change the name, attributes, or parent
/// of this class.
/// </summary>
[Microsoft.SqlServer.Dts.Pipeline.SSISScriptComponentEntryPointAttribute]
public class ScriptMain : UserComponent
{
long memberVariable;

/// <summary>
/// Can update the package's Variable here
/// </summary>
public override void PostExecute()
{
base.PostExecute();
//this.Variables.ExternalVariable = this.memberVariable;
}

/// <summary>
/// Assign a row's value to the class level variable.
/// Cannot assign to the
/// </summary>
/// <param name="Row">The row that is currently passing through the component</param>
public override void Input0_ProcessInputRow(Input0Buffer Row)
{

this.memberVariable = Row.Column;
// this results in a runtime error
// The collection of variables locked for read and write access is not available outside of PostExecute.
//this.Variables.ExternalVariable = 1111L;
}

}

关于variables - 有没有办法将总和传递给包级变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16410311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com