2

我使用以下 BIML 脚本根据源数据库创建每个表的列列表。我还添加了 dwh_timestamp 列。我使用此脚本创建目标表,添加元数据列。

  <Columns>
    <# foreach (var column in table.Columns) { #>
        <#=column.GetBiml()#>
    <# } #>
    <Column Name="dwh_timestamp" DataType="DateTime" IsNullable="true"/>
  </Columns>

我使用以下代码创建将从源导入数据的 SSIS 包。

<DirectInput>SELECT <#=table.GetColumnList()#> FROM <#=table.GetTag("SourceSchemaQualifiedName")#></DirectInput>

然而,这会导致错误,因为源表不包含 dwh_timestamp 列。

我将如何过滤 table.GetColumnList() 以便它跳过带有“dwh_”前缀的列?

4

1 回答 1

5

有几种方法可以在 Biml 中过滤列列表。

您可以过滤列名或列名的一部分:

<#=table.GetColumnList(c => c.Name != "dwh_timestamp")#>
<#=table.GetColumnList(c => c.Name.StartsWith("dwh_"))#>

一个更可重用的解决方案是在列上创建注释并过滤注释:

<Columns>
  <# foreach (var column in table.Columns) { #>
    <#=column.GetBiml()#>
  <# } #>
  <Column Name="dwh_timestamp" DataType="DateTime" IsNullable="true">
    <Annotations>
      <Annotation AnnotationType="Tag" Tag="IsDWHColumn">Yes</Annotation>
    </Annotations>
  </Column>
</Columns>

<#=table.GetColumnList(c => c.GetTag("IsDWHColumn") != "Yes")#>

当然,您可以选择自己的注释策略。您可能希望使用“true”和“false”而不是“Yes”和“No”,或者反转注释逻辑以指定哪些列是源列而不是 DWH 列。

于 2016-02-22T09:02:04.527 回答