Please enter search query.
Search <book_title>...
Enterprise Vault™ Troubleshooting Reporting
Last Published:
2021-03-23
Product(s):
Enterprise Vault (14.1, 14.0, 12.5, 12.4, 12.3, 12.2, 12.1, 12.0)
- About this document
- Setting up SQL Server Reporting Services
- Troubleshooting configuration and report deployment
- Identifying the problem
- "Reporting has been configured on this machine. However, there were a few warnings and/or errors..." message
- Troubleshooting accessing the reports
- Troubleshooting using and exporting the reports
- Troubleshooting problems with report content
- Troubleshooting report export
CSV format: All data appears in a single cell in Excel
Problem: Reports exported in CSV format are rendered by default in Unicode, which results in Excel displaying all data in a single cell.
Resolution: To resolve this problem:
- Open the following configuration file for editing on the Report Server:
<SQL_Server_Install_Path>\Reporting Services\ReportServer\RSReportServer.config
- Locate the following Extension tag for the CSV renderer:
<Extension Name="CSV"> </Extension>
- Change this tag so that its content is as follows:
<Extension Name="CSV" Type="Microsoft.ReportingServices.Rendering. CsvRenderer.CsvReport,Microsoft.ReportingServices.CsvRendering"> <Configuration><DeviceInfo><Encoding>ASCII</Encoding></DeviceInfo> </Configuration></Extension>