SSMS and SSRS to Excel enable for more than 255 columns when copy-pasting.
SSIS does not allow for more than 255 columns to be exported to Excel 2007. Is there a way to override this?
SSMS and SSRS to Excel enable for more than 255 columns when copy-pasting.
SSIS does not allow for more than 255 columns to be exported to Excel 2007. Is there a way to override this?
Refer the link. Best would be to create an script in SSIS to copy the content as csv format. You can use c# or VB.Net.
Problem
There are a lot of Limitations when exporting to an Excel Files using Sql server data tools
Workarounds
You can do some workaround to achieve this:
FlatFile
(csv)Note: you have to add
Microsoft.Office.Interop.Excel.dll
file to the following directories (.Net Framework dll directory)C:\Windows\Microsoft.NET\Framework\v2.0.50727
and (sql server data tools dll directory)C:\Program Files\Microsoft SQL Server\100\DTS\Binn
(using vs 2005 and sql 2008) and then add this dll as a reference in your script taskThird party components
Or you have to use a third party components like cozyRoc SSIS+
Side Note
if you are looking to Import data from excel with more than 255 columns you can follow this Link
References
Third party components
Workaround