Hello,
I am reading a CSV flat file inside a data flow task. With the output from that file, I want to add a value stored in a user-defined variable. I have to use a stored procedure to do that since the SP is doing some other stuff too, and I cannot insert all output in the required table by using the table's or a view's name.
So, here is the scenario. I am getting 9 values from the flat file. The tenth is the user-defined variable (scope is package). Now I want to call a stored procedure and insert one line at a time from the flat file, along with the value of user-defined variable.
Please help.
Thanks.