Quantcast
Channel: SQLServerCentral » Reporting Services » Reporting Services » Latest topics
Viewing all articles
Browse latest Browse all 2791

Reporting Server Export - Space Delimiter

$
0
0
I've been researching for some time now and would like to receive some guidance from you. I've been able to add delimiters to the export or 'Save as' option within the report builder by adding different information into the rsreportserver.config file, such as ; delimiter and 'tab', but I am unable to find anything that would show me how to add a space delimiter to the configuration file. The current configuration i have is as follows, what am I missing? <Extension Name="TAB" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering"> <OverrideNames> <Name Language="en-US">TXT (Tab)</Name> </OverrideNames> <Configuration> <DeviceInfo> <FieldDelimiter xml:space="preserve"> </FieldDelimiter> <FileExtension>txt</FileExtension> </DeviceInfo> </Configuration> </Extension> <Extension Name="TXT_2" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering"> <OverrideNames> <Name Language="en-US">TXT (2)</Name> </OverrideNames> <Configuration> <DeviceInfo> <FieldDelimiter>;</FieldDelimiter> <FileExtension>txt</FileExtension> </DeviceInfo> </Configuration> </Extension> <Extension Name="TXTSpaceDelimited" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering"> <OverrideNames> <Name Language="en-US">TXT (Space)</Name> </OverrideNames> <Configuration> <DeviceInfo> <FieldDelimiter xml:space="preserve">....... </FieldDelimiter> <FileExtension>txt</FileExtension> </DeviceInfo> </Configuration> </Extension>The '.........' portion in the line of <FieldDelimiter xml:space="preserve">....... </FieldDelimiter> is where i am having issues. Thank you already for your help! DJ

Viewing all articles
Browse latest Browse all 2791

Trending Articles