reporting-services

Localization of Reporting Services-Reports (.rdl / .rdlc-Files)

怎甘沉沦 提交于 2019-12-06 01:07:49
i need to localize a Reporting Services-report (.rdlc) and i would like to do it using a ressource-file (.resx). I found pages like this and that and they use custom code to achieve their target. But pages like Setting the Report Language Parameter in a URL give me the impression that localization in reports is possible without custom code. So, it is possible to localize a Reporting Services-report without custom code ? If so, is there a tutorial that explains how it's done? What in the report do you want to localize? values from the database? Those should be retrieved from the database in the

SSRS Export to Excel creates additional columns

懵懂的女人 提交于 2019-12-06 00:22:30
I have a SSRS report that when I export to Excel, creates unwanted columns when viewed in Excel. What would the best way to go about ensuring no additional columns are created. I have tried setting the location of the table rows to 0in , 0in but that did not resolve the problem. The attached screen shot is what the report looks like in both Visual Studio and Excel. There are two ways to approach this: Align everything: You need to align your textboxes with the main tablix to remove the unwanted columns. So the first expression after the main tablix start, Align left with the Patient Name and

how to migrate or copy SSRS datasource from one server to another without restoring the report server

久未见 提交于 2019-12-05 23:56:23
I'm trying to migrate SSRS report from SQL 2008r2 to SQL 2014 server. I used reportsync to transfer the report to the server. the reports are successfully transferred but however the roles subscriptions and datasources are not transferred. Is there is any way to copy or migrate the data sources, roles and subscription from one server to another without restoring the report server database?. Thanks. I have used these migration tools which doesn't help me much. i found the below link after a lot of struggle trying different things https://azuresql.codeplex.com/releases/view/115207 https://msdn

MVC5 & SSRS ReportViewer - How to Implement?

删除回忆录丶 提交于 2019-12-05 23:14:07
问题 I have spent hours trying to solve this and so far I can find MVC1, MVC2, and MVC3 based solutions but nothing about MVC5 and using SSRS and ReportViewer. Frankly, I don't know WebForms, since I joined the programming world after MVC was a big thing in the shop I work at. Enough extra backstory, I'll get to it. I have: Written a stored procedure Used the Business Intelligence Tools in VS 2013 to design my report Viewed the report in the designer and know it's good Attempted to integrate the

How to fetch Physical SQL Query from a Semantic Query in RDL file?

醉酒当歌 提交于 2019-12-05 22:05:12
How to fetch Physical SQL Query from a Semantic Query in RDL file? We have some following steps to go ahead while extracting the Semantic Query from RDL Extract the Semantic Query from RDL file Validate against the Semantic Model XSD Parse and Transfrom Semantic Query into a structure where we will be able to generate Physical SQL from Execute the conversion process to get physical query We accomplished step 1, We were able to Extract the semantic query from RDL and store it in XML Question 1: For step 2, Validating against the XSD. XSD path is http://schemas.microsoft.com/sqlserver/2004/10

SQL - combine consecutive date rows based on column

血红的双手。 提交于 2019-12-05 21:27:49
Let's say I have the following SQL result BegDate | EndDate | quanitty 1/1/2014 1/31/2014 1 2/1/2014 2/28/2014 1 3/1/2014 3/31/2014 2 4/1/2014 4/30/2014 4 5/1/2014 5/31/2014 4 6/1/2014 6/30/2014 4 7/1/2014 7/31/2014 2 8/1/2014 8/30/2014 2 I need to group all months with the same quantity into one row so the result should be BegDate | EndDate | quanitty 1/1/2014 2/28/2014 1 3/1/2014 3/31/2014 2 4/1/2014 6/30/2014 4 7/1/2014 8/30/2014 2 I've searched around stackoverflow and found similar posts which solution's I've tried to no avail This and This The following is the SQL i'm using to create the

TFS permissions to create Team Projects in a specific collection

这一生的挚爱 提交于 2019-12-05 20:21:50
问题 We have several Collections in our TFS 2010 server. This server hosts all of our TFS related services. I'd like to allow a specific programmer to create Team Projects within his dedicated collection. He belongs to the collection's TFS administrators group. When he tries to create a new Team Project, it fails with a Reporting permissions error. I understand that he also needs Reporting services permissions to create the relevant Reporting objects for the new Team Project, but I don't want him

SSRS - Add a page break after a specific group - SQL Server 2008 R2

无人久伴 提交于 2019-12-05 19:57:05
Is there a way to add a page break after nth group? I have a table that has two columns and is grouped by states. State | Name MA Sarah Bob NY Jane TX Klein I want the 3rd group (TX), to be on it's own page. How do I add a page break after a specific group? Since you're using 2008R2, you can set up page breaks in a Tablix to be conditionally enabled/disabled based on an expression - in your case you'd only be enabling it where the State is TX . Here's an example based on your sample Dataset: I've just created a simple table based on this: Note that I've added a Report Header to display a page

Lookup function in SSRS report

孤街醉人 提交于 2019-12-05 19:43:49
I have one dataset Dataset1 and in that I am displaying data based on grouping. The data is like this CityColumn CountColumn City1 5 City2 3 The query of above datase is like this : select count(*) as "CountColumn" from City group by CityColumn Here in above dataset I have counted using grouping on CityColumn . Now I have created another Dataset Dataset2 and in that The data is like this CityColumn City1 City2 City3 Now in dataset2 I have add one calculated field called TotalCount and used the Lookup Function the function is like this =Lookup(CityColumn, CityColumn, CountColumn, "Dataset1")

Editing RDL files with Visual Studio 2008

最后都变了- 提交于 2019-12-05 18:28:43
I have installed SQL Server 2008 Express on two workstations. On one workstation, it has updated the VS2008 installation so that I can create reporting projects containing reports as *.rdl files. On the other workstations, VS2008 can only create/edit *.rdlc files. The report edition interface is also different. I do not understand where the difference comes from. Two major differences between the two workstations are: - one is x86 and had no VS installation before installing SQL Server 2008 Express - the other one is x64 and had VS2005 and VS2008 previously installed I feel like on the second