Trying to import a flat file into SQL Server using SSIS.
The file format is like this:
Image: C:\folder1\1234\5678.jpg
ColHead1 ColHead2 ColHead3
Data1 Data2 Data3
I need a result that looks like this:
ColHead1|ColHead2|ColHead3|ColHead4
-----------------------------------
5678 |Data1 |Data2 |Data3
So the idea is that we extract "5678" from the header portion of the flat file, and put it into the resulting SQL table.
Any ideas?