如何在 ssis 中的 txt 文件末尾连接 yyyyMMdd?

How can I concatenate yyyyMMdd at the end of my txt file in ssis?

我正在使用 SSIS 来转换我的数据。我的 file_name 是 test_heathcare.csv。我怎样才能把它带到我的平面文件目的地,因为新的派生列是文件名 test_healthcare20190712.txt?

有知道的请帮帮我

您可以使用表达式来实现:

  1. 将您的文件路径存储在一个变量中。
  2. 然后单击目标 平面文件连接管理器。按 F4 显示属性选项卡。
  3. 转到表达式 属性
  4. 来自 tge 表达式 window select ConnectionString 属性 并使用类似的表达式:

    REPLACE(@[User::FilePath],".csv","20190712.txt")
    

附加信息