Forum Discussion
I think it uses INSERT BULK direct from the source somehow so there's no intermediate table (at least that's what the profiler is saying). If you are using a text file as a source you could edit that file before it is imported. I have done it on the InitializeTransformer Before event.
- Keyser_Soze2 years agoContributor
Thanks for replying,
For AuditTrail purposes, I think it would be wise to keep the original file intact. Also, it won't work for every workflow Profile since the data sources aren't the same ... It would be hard parsing each file by dimension etc
What method did you use to achieve this though ?
- Retrieving the .csv file from the harvest folder and modify it
Or- A property within these objects;
Dim objTransformer As Transformer = DirectCast(args.Inputs(0), Transformer)
Dim objParser As Parser = DirectCast(args.Inputs(0), Parser)
- MarcusH2 years agoValued Contributor
It was much simpler than that. It was not a batch process so:
- take a backup of the original file, read the file, make the changes and then save.
Related Content
- 2 years ago
- 12 months ago
- 2 years ago
- 2 years ago