I'm new to SSIS and I want to generate an Excel file from a SQL table.
SQL table: mydata
Id date value
1 2013-02-2 236823
2 2013-02-3 185454
Now I need to generate an Excel file which will gives me an input like only date and value.
How can I generate that Excel file?
I have tried to do start a data flow task.
Inside I have taken OLE db Source and write SQL query select date, value from mydata, then added Excel destination.
But it is giving me an error in Excel destination:
external table is not in expected format
excel destination:external table is not in expected formatExcel fileopen or r u using anypasswordprotected file ?C:\test` and insertdate,value` from sql table to excel file.. how can i do that?