好的,我是SSIS的新手,我正在尝试将平面文件从一个系统转换为可导入另一个系统的文件。
此文件转换的一部分是使用标头记录。标头记录由一些固定组件和一些动态组件组成。动态组件是记录计数和支付金额(下表中的“PAYAMT”)。我正在尝试使用标头属性表达式将标头附加到详细记录。
“00”+ REPLICATE(“0”,6-LEN((DT_STR,6,1252)@ [User :: RecordCountA1200]))+(DT_STR,6,1252)@ [User :: RecordCountA1200] +“ PAYAMT“+”P1200000000000000000000“
付款金额字段是货币的数据类型。我的第一个想法是使用聚合转换并将其存储在记录集目的地中。我的聚合工作给了我正确的总和,但变量只能存储为对象而不是我原先期望的数值数据类型。我想将PayAmount的总和用于所有记录,并将其放入一个名为SumAmountA1200的用户定义变量中。
是否可以将聚合转换中的值存储到其他类型的转换中并将其转换为包级别变量?我应该采取另一种方式吗?非常感谢任何反馈
答案 0 :(得分:2)
第一个选项是使用连接到聚合转换的脚本转换。
您只能在数据流的前/后执行阶段访问SSIS变量。由于此限制,您的脚本将执行的是Input0_ProcessInputRow
事件中的任何逻辑。在您的特定情况下,将只发送一行,您可能希望将Row中的值分配给类作用域成员变量。
在PostExecute方法中,您可以将Variable的值指定为成员变量的值。
此脚本是充当目标的脚本转换。我已将变量检查为读/写(User :: ExternalVariable),在输入/输出选项卡上,我从Aggregate(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;
}
}