Replace DataSource for Reporting Services RDLC Reports - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T01:49:56Zhttp://stackoverflow.com/feeds/question/982964http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/982964/replace-datasource-for-reporting-services-rdlc-reports1Replace DataSource for Reporting Services RDLC ReportsMike Wills2009-06-11T18:59:21Z2009-06-15T16:13:31Z
<p>I am making some changes and need to change the DataSource for my report. How can I do that without losing all of the work I have done? Assume the field names are the same.</p>
<p>Update: The reports are still in Visual Studio and I need to change from a TableAdapter to a DataTable which I will fill through a class.</p>
<p>Update 2: Currently it is using fields in CustomerService_report_vw_ServiceRequest, I want to change that to CustomerService_ServiceRequest. I am seeing this in the expression editor. So when I select the Fields option in the Expression Editor, I want to see the fields in CustomerService_ServiceRequest. </p>
<p>Does that make more sense?</p>
<p>Update 3: So if you add a field from the other DataTable, you can switch your DataSetName to the new one. Now, how do I remove the old one?</p>
http://stackoverflow.com/questions/982964/replace-datasource-for-reporting-services-rdlc-reports/983058#9830581Answer by TheTXI for Replace DataSource for Reporting Services RDLC ReportsTheTXI2009-06-11T19:15:16Z2009-06-11T19:15:16Z<p>If you already have the reports uploaded to the report server, the simplest thing would be to go into the properties of your report and then configure the data source information in there.</p>
<p>More information: <a href="http://msdn.microsoft.com/en-us/library/ms156018%28SQL.90%29.aspx" rel="nofollow">Setting Data Source Properties in Reporting Services</a></p>
http://stackoverflow.com/questions/982964/replace-datasource-for-reporting-services-rdlc-reports/987617#9876170Answer by Mike Wills for Replace DataSource for Reporting Services RDLC ReportsMike Wills2009-06-12T16:23:10Z2009-06-12T16:23:10Z<p>I manually edited the *rldc file in a text editor and edited the XML therein to removed the DataSet.</p>