I am building an SSIS package that runs a stored procedure and then exports the results(10Columns) out two an Excel file.the package is working fine and exported results to an excel sheet.
the issue is in exported results, for every cells in the excel has single quote added by default.
SP resultsets aren't having quotes added,however not sure why SSIS is adding "single quote" to every cell.
Result set has 10 coulumns and all are varchar data type
tried following ways and failed to remove quotes.
1.converted VARCHAR to NVARCHAR
2.Modified string to Unicode String
My Question is,
Is there any way to fix this quote issue? if yes, could you please assist me to fix.
by default, why the SSIS data flow pipeline is adding single quote to every column
I would appreciate your help in this regard.
-- Sathish