I have one Execute SQL Task (DOE Params) with script:
select
SystemCode
,[Group]
,Process
,InputFolder
,InputFileName
,TargetFileName
from rpt.v_cfg_Report_DOE_Parameters
where
Report_Id = ?
and Procedure_Id = ?
And after there is new sql task (RUN DOE CALLER) which taking results from previous query, call procedure, which continue to process data for some another steps. I need to make File System Task which will copy that params from (GET DOE Params) to file and to save that file in folder where I can see which parameters are forwarded to procedure in a purpose of check.
Any idea how to do that?