SQL Server Reporting Services (SSRS) is server-based report generator from Microsoft. It provides a full range of ready-to-use tools and services to help you create, deploy, and manage reports for your organization, as well as programming features that enable you to extend and customize your ...
73
votes
18answers
55k views
Compare SQL Server Reporting Services to Crystal Reports [closed]
Which of Crystal Reports and SSRS (SQL Server Reporting Services) is better to use?
36
votes
5answers
42k views
How to get rid of blank pages in PDF exported from SSRS
I have a SSRS report. When i tried to export to PDF it was taking 4 pages due to its width., where the 2nd and 4th pages were displaying one of my field from the table. So i tried to set the layout ...
8
votes
8answers
14k views
SQL Reporting Services - Print Button not shown in Mozilla
I am using SQL Reporting services, it's working perfectly and shows a print button in IE, but not shown in Mozilla Firefox.
Does anyone have any idea?
I have checked out this solution, but it's not ...
37
votes
7answers
35k views
When to use RDLC over RDL reports?
I have been studying SSRS 2005 / 2008 in the past weeks and have created some server side reports. For some application, a colleague suggested that I look into RDLC for that particular situation. I am ...
18
votes
13answers
65k views
Passing multiple values for a single parameter in Reporting Services
I have several Multi-Select parameters in my report. I am trying to find a way to pass in multiple values for a single parameter in the web query string? If I pass in a single value, it works fine.
...
5
votes
2answers
15k views
SSRS - How to build a simple multi-column report?
I am new to SSRS, so forgive my newbieness. I am using Sql Server 2008 and I want to show 1 single field from a table in multiple columns in the report. Just like if I were to print labels. How can I ...
2
votes
1answer
228 views
Changes to parameter not showing on Report Server after deployment
I have 7 parameters (3 multi select of string, 1 DateTime, 3 string values) in my SSRS 2008 report, and I have set all the parameters as null in the default value.
It's working fine in my preview ...
16
votes
8answers
70k views
ReportViewer Client Print Control “Unable to load client print control”?
Has anyone come across this issue?
Seems MS have broken it with their own update:
A number of people have reported
problems using the ActiveX print
control in the report viewer after
...
4
votes
6answers
11k views
How do i represent an unknown number of columns in SSRS?
I'm working on a rather complex report in Sql Server Reporting Services. My SP returns a dynamic number of columns each of which are dynamically named.
Basically think of a time keeping application. ...
2
votes
1answer
3k views
Optional multi-valued parameters in SSRS
I have 3 multivalued parameters in my report.Out of them 2 are optional.
Is there any way to get the results in the report with out selecting any from the 2 optional parameters.
My stored proc checks ...
2
votes
2answers
7k views
How to create BIRT report based on multiple data sets
I need help in creating a BIRT report;
the situation is that I have multiple queries but the report all columns should be grouped by One column for example (Operator) Like :
Operator | Expr1 | Expr2 ...
1
vote
1answer
1k views
Modified Reporting Services Report - RDL does not change?
I have a Reporting Services 2005 report that had an error: "Parameter UserID is read-only". After doing some research, I found a solution that worked. I opened the report from the Report Manager web ...
65
votes
11answers
100k views
Add alternating row color to SQL Server Reporting services report
How do you shade alternating rows in a SQL Server Reporting Services report?
Edit: There are a bunch of good answers listed below--from quick and simple to complex and comprehensive. Alas, I can ...
16
votes
4answers
11k views
Viewing SSRS Reports in an ASP.net MVC Site
Is there a way to put a SQL Server Reporting Services report viewer control on an ASP.net MVC view? If not...what is the best way to accomplish this?
11
votes
2answers
2k views
Does the iif function compute both paths in SSRS or is it short-circuited?
I am trying to evaluate a Price per Kilo ($/Kg) based on sales of a product. This works fine if the product was acutally sold during the period specified. However if the product is not sold the Kg ...
2
votes
2answers
248 views
how to exclude column from a report
i am including column 13 as a dummy column here:
+----+---+---+---+----+---+---+---+---+---+----+----+----+----+
| | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
...
1
vote
4answers
2k views
How can I display a Microsoft SQL Server Reporting Services Report in an iPad App?
This is more of a general "how do I get started" question. I would like to display my company's SSRS Integrated Sharepoint Reports in an iPad App, but I'm not sure where to start. Googling this ...
0
votes
3answers
10k views
SSRS multi-value parameter using a stored procedure
Group, I am working on a SSRS report that uses a stored procedure containing a few parameters. 2 of the paramters I am having problems with because I want to have the option of selecting more than ...
31
votes
14answers
5k views
Enterprise Reporting Solutions [closed]
What options are there in the industry for enterprise reporting? I'm currently using SSRS 2005, and know that there is another version coming out with the new release of MSSQL.
But, it seems like it ...
23
votes
6answers
9k views
Reporting Services Deployment
I need to create a repeatable process for deploying SQL Server Reporting Services reports. I am not in favor of using Visual Studio and or Business Development Studio to do this. The rs.exe method ...
17
votes
4answers
14k views
Open Source .Net Reporting Tool [closed]
I am looking for a reporting service/tool for visual Studio. My only restraint is my web server is off limits to me as far as installing ANYTHING. So I need something I can just include in my ...
6
votes
3answers
6k views
Crystal Reports vs. Microsoft SQL Server Reporting Services
I am developing a WPF application, and I need your advice.
I have to generate reports in my application. What should I use, Crystal Reports or SQL Server Reporting Services? Which one is better, ...
23
votes
8answers
15k views
Best ASP.NET reporting engine with custom reports creation ability
We need to choose the reporting engine for our ASP.NET application. The main functional requirement is an ability for end users (not programmers, just normal users) to create custom reports. We will ...
11
votes
4answers
37k views
Passing parameter via url to sql server reporting service
I'm trying to pass a parameter via the url to SSRS and it appears not to work!
I'm trying to pass a userId (string) via the url which will be passed to the database and used by the query.
base url:
...
5
votes
3answers
11k views
Automatically print SSRS report?
Is there a way to automatically print a SQL Server Reporting services (2005) report?
EDIT:
We needed to print a SSRS report at a network printer programmatically. Specifically, we wanted to fire ...
2
votes
2answers
9k views
Reporting Services Chart - Custom Axis Label
I have a SQL Server Reporting Services (2008) chart (error chart). The X-axis has date intervals 1/1/2009, 2/1/2009, etc. The Y-axis has numeric intervals of 50. Values on the Y-axis are 0, 50 and ...
5
votes
1answer
5k views
SSRS - Keep a table the same width when hiding columns dynamically?
Greetings.
I have a SSRS 2005 report that shows prices of things. For some customers, I hide a column from the table (with an expression on the Visibility - hidden property).
When I do this, my ...
5
votes
3answers
11k views
Converting SQL2008 RDL file to SQL2005
How do I convert a RDL file that was created using the SQL2008 designer to work on SQL2005 Reporting services?
1
vote
1answer
3k views
RDL client-side (local) reporting on .NET 4.0?
I just stumbled across the VS2010 "upgrade or die" confrontation for the RDL report designer. Before I destroy a perfectly good monitor, I decided to take a deep breath and calmly ask if anyone can ...
11
votes
3answers
16k views
Select All as default value for Multivalue parameter
I'm building a report in Visual Studio 2008 with a lot of multivalue parameters and it's working great, but I would like to have have the "(Select all)" option as the default value when the report is ...
4
votes
4answers
713 views
Hierarchial xml to Flat xml using XSLT
I have xml which is structed like following
<root>
<PNode>
<node1>
<node1Child>data</node1Child>
<node2Child>data</node2Child>
...
3
votes
1answer
3k views
SSRS 2005 Set SimplePageHeaders on the report instead of the server?
I have one report that does not export to excel friendly from SSRS 2005. I know I can use
<Render>
<Extension Name="EXCEL" ...
2
votes
1answer
3k views
SQL Reporting Services - Restrict Export Formats
Is it possible to limit export formats only PDF and Excel ?
0
votes
2answers
4k views
How to pass textbox/Combobox value to rdlc report text field?
c#, mysql in my project.
In that i create a rdlc report. I dont know to pass winform textbox value to rdlc report text field.
I googled and try some set of code. but cant get that.
If you worked ...
12
votes
7answers
17k views
Conditional Visibility and Page Breaks with SQL Server 2005 Reporting Services
I know there's a bug with conditional visibility and page breaks with SQL 2005, but I wonder if anyone has come up with a work around.
I have a table that has a conditional visibility expression, and ...
8
votes
2answers
15k views
Passing Credentials to Sql Report Server 2008
I am pretty new in C# and my English is not so good - sorry in advance if I miss a point.
I tried to build an ASP.NET web site with a ReportService control. As you might already know, SSRS 2008 does ...
6
votes
5answers
17k views
SSRS report , get rid of page breaks in report
How do i get rid of the page breaks in the the SSRS report, making the report display in a single page.
Thanks in advance,
anna
3
votes
2answers
4k views
Report footer is not exported to Excel
I am using SQL Server Reporting Services 2008 for reporting. When we export the report to Excel, the footer image or textbox is not exported. Header image is getting exported successfully.
Does ...
2
votes
1answer
8k views
SSRS Sum in table group
I am working on SSRS reporting services.
I have a table on which I applied group. Originally I had this data:
I changed something in my tablix and created a tablix and added a parent group of Age ...
0
votes
2answers
661 views
Programmatically Export SSRS report from sharepoint using ReportService2010.asmx
I have to programmatically export ssrs reports to excel, added service refernce to
http:/siteurl/_vti_bin/ReportServer/ReportService2010.asmx
...
0
votes
2answers
1k views
total pages in a report using report viewer
i want to get total number of pages in form,which is placed report viewer..(int t=int T = objReportViewer.LocalReport.GetTotalPages();)i used this code,actually report have 5 pages but got only one ...
18
votes
3answers
9k views
Display .RDLC report embedded in a DLL file
I have a report that is used by a windows service and a form application. So, I want to put embed the report in a DLL file that can be used by both.
The problem is that if I try to set the ...
8
votes
4answers
13k views
Updating report parameters based on perameter selection? (SSRS)
I've created a report in SSRS with two report parameters. I'd like the second to update it's values based on the selection in the first. The first is a list of sales agents, and the second is a list ...
5
votes
6answers
6k views
SSRS Report Viewer Control Browser Compatibility
How compatible is the MS Report Viewer Control with browsers like Firefox and Safari?
Please also post if you know any 3rd party report viewers for SSRS.
6
votes
4answers
2k views
Microsoft.Reporting.* vs XML/XSLT
I would like to add reporting capabilities to a .NET application. My data source is just the data model of the application, i.e. a bunch of objects that may have been generated or loaded from anything ...
5
votes
4answers
12k views
Slow Startup of SQL Reporting Services 2008 in Native Mode
We are experiencing a slow start up time on the first report request of the day, or when there have been no report requests for an unknown period of time. In SQL Reporting Server 2005 installations ...
2
votes
2answers
2k views
SSRS IE8 JavaScript Error Invalid Character ScriptResource.axd
A colleague of mine has produced various reports in SSRS. We have 2 machines in the office that are failing to load the report via Internet Explorer 8. Both machines are returning a JavaScript error ...
5
votes
1answer
5k views
Local Report vs Server report in ASP .Net Report viewer control
In one of the ASP .Net site we are currently working we have a bulk load of SSRS reports. We have forms authentication for the site and reports have already been created and deployed in the report ...
4
votes
4answers
446 views
Sql PIVOT and string concatenation aggregate
I would like to use a pivot SQL query to construct a result table where the concatenate text as a result within the DATA section of the pivot table.
i.e. i have the following result from using a ...
3
votes
2answers
4k views
Comparison of ASP.Net Reporting Solutions
This week my team spent way too much time trying to do simple things in reporting services, and I've decided to start evaluating other options.
I know there are some good options out there now that ...