I have a stored proc that produces a result set.
I can do "Execute SQL Task" with ADO.NET connection to specify the result set.
1. How do I feed that result set to an excel file in that SSIS package?
(what control items to use? My result set has 61 cols and the export wizard has a step that creates the Excel layout.)
2. How do I assign Excel file name based on input parm and timestamp?
(for example, if my stored proc has input parm @account='Jcrew' and the system timestamp is Jan 18 12:40AM, how do I tell it to export to an Excel file say c:\temp\Jcrew Jan 18 12:40AM.xls?
thank you much.