I have a tool that generates csv automatically but in semicolon ;however when I run the query in SSRS it is giving only one column to all the fields in the report. When I changed the semicolon with comma, it is working well.
I want to modify or change the settings in the SSRS to give the correct format. I run the query for example the csv has sample1;sample2;sample3;;;; a;b;c; , the output is giving sample1;sample2;sample3;;;; a;b;c;
I tried changing the reportingservices.config this way but not working
<Extension Name="Semicolon" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering">
<OverrideNames>
<Name Language="en-US">CSV (semicolon delimited)</Name>
<Name Language="en-EN">CSV (semicolon delimited)</Name>
</OverrideNames>
<Configuration>
<DeviceInfo>
<FileExtension>csv</FileExtension>
<FieldDelimiter>;</FieldDelimiter>
<SuppressLineBreaks>True</SuppressLineBreaks>
</DeviceInfo>
</Configuration>
</Extension>
I want this kind of output.
sample1 | sample2 | sample3
a b c
Any idea on how to do this in SSRS.