reporting-services

Using client side reporting vs. server side reporting?

ε祈祈猫儿з 提交于 2019-12-05 16:07:25
When do we use client side reporting and when do we use server side reporting? Which reporting is best practice (client/server)? This pertains to SSRS reporting. lomaxx Well... client side reporting you'd use if you've got something like a winforms client that you can't guarantee will have constant access to the data source. It might have a set of data cached on the client side which you need to report on even if the connection to the server is unavailable. Server side reporting you'd use in the scenario where you either need to simplify the report distribution and deployment as you just

Column and Row grouping in SQL Server Reporting Services 2008

走远了吗. 提交于 2019-12-05 15:41:33
This is the desired result I need to populate as a report, where xx is number of people. I have a table which has fields like: ---------- table1 ---------- id state year(as Quarter) gender I need to determine the count from id and populate as a report. The year is like 20081, 20082..20084 (in quarter). I have created a dataset using this query: SELECT STATE,GENDER,YEAR,COUNT(*) FROM TABLE 1 GROUP BY STATE,GENDER,YEAR From this query I could populate the result ex: ca, m , 20081,3 ny, f , 20091,4 From the above query I could populate the count and using group by(row) state(in ssrs). I need to

Create Microsoft SQL Report (SSRS) based on XML data stored in database

亡梦爱人 提交于 2019-12-05 15:09:35
I'm trying to create a Microsoft SQL Report in Visual Studio 2012. My data input for the report is an XML binary file stored in a database. To break it down, this is what I would like to do: Retrieve the XML binary file from the database Populate the report with the content of the XML Create a PDF version of the report Step 1 and 3 are not a problem. But step 2 is. I don't know how to use the XML data in a dataset so I use it in the report. Is there something fundamental I'm missing? I have created many reports before by using just data from a database but never from XML. Thank you. Serge

Keep Group on One Page using Reporting Services

邮差的信 提交于 2019-12-05 14:44:47
问题 I created a report as part of a C# application using Reporting Services and I cant find some functionality I am used to seeing in other environments. I believe both MS Access and Crystal reports have an option called "Keep Together" so that you can keep a specific grouping of data on one page instead of the information being split over two pages. How do I do that using 2005 Reporting Services when my report is rendered locally in a C# app and viewed using the .net report viewer. Essentially,

How to export a csv without header in SSRS

不问归期 提交于 2019-12-05 14:06:34
Is there any way of turning off the header for a CSV export on just one SSRS report? I'm using Report Builder 3 and I deleted the headers from the report, but when exporting to CSV they're back. I can't find anywhere to turn them off. I've seen this question but it seems to cover all reports on the server, I only need to turn the headers off for a couple. You can't do anything with the data driven subscription out of the box. It might be possible to write a custom subscription extension to do it. You also cannot do anything about exporting directly from Report Builder, unless you did something

Pie chart not showing all the values in SSRS 2014

╄→尐↘猪︶ㄣ 提交于 2019-12-05 13:06:01
I created the pie chart in SSRS as given below. I enabled the labels by right clicking on pie chart and click show labels. When I preview the chart I cant see all the labels. The only label visible is for the biggest portion in the pie. I tried to increase the size of the chart but no effect. Any idea? No info is available but finally I learned the trick. I think there is a bug because of which only one label is shown (403 in my case) on the pie chart. To solve the problem follow the steps: Right click on the pie chart and change it to line chart. Now on individual bar right click and select

ReportViewer “Missing URL parameter: Name”

无人久伴 提交于 2019-12-05 12:39:30
In a web application I'm working on the ReportViewer keeps giving me a error "Missing URL parameter: Name". I have found the cause but not a solution. The url that is causing the exception from the report viewer Reserved.ReportViewerWebControl.axd?ReportSession=3bkunv2wte3wmnabkquyr1y0&ControlID=1e2b5870e07b46abac7fd32a9e0e4b9d&Culture=1033&UICulture=1033&ReportStack=1&OpType=ReportArea&Controller=ctl00_ASPxRoundPanel3_PageContent_Wizard1_ReportViewer1&PageNumber=1&ZoomMode=Percent&ZoomPct=100&ReloadDocMap=true&SearchStartPage=0&LinkTarget=_top if you notice in the query string instead of "

Do SSRS report subscriptions that trigger at the same time run concurrently?

点点圈 提交于 2019-12-05 12:28:49
If you have multiple report subscriptions that are set to be triggered at the same time will all of them start at that time and run concurrently? That is, if you have too many reports scheduled for a particular time they run the risk of using up too much system resources and failing? Do shared subscriptions function differently? I'm interested in the answer to this for any version of SSRS as my organisation manages environments with SSRS 2005, 2008, 2008 R2, and 2012. I've tried searching MSDN and google but I haven't been able to find anything definitive. I would imagine that separate

SSRS 2016 - cannot see parameter

♀尐吖头ヾ 提交于 2019-12-05 11:59:34
问题 I am self-learning SSRS via Microsoft SQL Server Data Tools, VS 2015. I am using tutorial from here I cannot see the parameter I created in preview. The visible has been selected in parameter properties. What have I missed out? Thanks in advance if anyone can help me. . Microsoft SQL Server Data Tools, VS 2015 . Microsoft SQL Server management studio 2016 Design Preview Parameter Properties 回答1: SSDT/Visual studio is strange and strange glitches such as this occur quite often. Another similar

Pass NULL to SSRS URL access parameter?

我的梦境 提交于 2019-12-05 11:23:27
问题 How does one specify a NULL value when passing a parameter to an SSRS report using URL access? i.e. when using the form http://server/ReportServer/Pages/ReportViewer.aspx?Report&Parameter=value 回答1: Use the syntax Parameter:IsNull=True In the example given above: http://server/ReportServer/Pages/ReportViewer.aspx?Report&Parameter:IsNull=True Reference: http://msdn.microsoft.com/en-us/library/ms155391(loband).aspx 来源: https://stackoverflow.com/questions/1433477/pass-null-to-ssrs-url-access