我正在尝试上传多个包含日期的 CSV 文件,但我希望日期成为列的一部分,但我不知道它是如何在 SSIS 中完成的
CSV 文件在 Excel 中打开时如下所示。
CSV 数据 1:
Relative Date: 02/01/2013
Run Date: 15/01/2013
Organisation,AreaCode,ACount
Chadwell,RM6,50
Primrose,RM6,60
CSV 数据 2:
Relative Date: 14/02/2013
Run Date: 17/02/2013
Organisation,AreaCode,ACount
Second Ave,E12,110
Fourth Avenue, E12,130
在数据仓库中,我想要Relative Date
和Run Date
沿列,如下所示:
期望的输出:
| Organisation | AreaCode | ACount | RelativeDate | RunDate |
| ------------ | -------- | ------ | ------------ | ---------- |
| Second Avenue | E12 | 110 | 14/02/2013 | 17/02/2013 |
| Fourth Avenue | E12 | 130 | 14/02/2013 | 17/02/2013 |
| Chadwell | RM6 | 50 | 02/01/2013 | 15/01/2013 |
| Primrose | RM6 | 60 | 02/01/2013 | 15/01/2013 |