Hi
I have a typical requirement.. I need to return the result set from a stored procedure and redirect the output to Excel(2010).
am able to call the sp from OLE DB Command task as follows
Exec mysp ? , ? with result sets(
(
A int,
b varchar(10),
c datetime
)
);
i want the above result set to be redirected to excel sheet.
I have place oledb command task with above procedure followed by excel destination .. But when i click column mapping on excel component i do not find the above rows returned from sp resultset.
Can any one please let me know how to deal with this ?
Thanks in advance
Sri