active questions tagged ssrs - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T06:11:43Zhttp://stackoverflow.com/feeds/tag/ssrshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1179082/ssrs-tracking-report-usage2SSRS - tracking report usageChris Valdivia2009-07-24T17:40:28Z2009-11-28T00:48:59Z
<p>Is there an easy way to track who is running a given report in SSRS 2005, and at what time they are running that report? We have about 80 reports in our SSRS implementation, and are trying to see if there's any that we can safely put out to pasture. If we could easily see somehow which reports aren't being used, that would help us. Any ideas?</p>
<p>Thanks,
Chris Valdivia, ADF</p>
http://stackoverflow.com/questions/1810454/get-list-of-reports-from-ssrs1Get list of reports from SSRS?TheSean2009-11-27T20:01:32Z2009-11-27T21:22:05Z
<p>I've just started working with SSRS and so far I've been able to show reports in my Winforms app using the ReportViewer, by hard-coding the report path. I would like get a list of reports from SSRS so I can display them and let the user select which one they want to see.</p>
<p>Is there a way to request the list of reports from SSRS? Thanks.</p>
http://stackoverflow.com/questions/417032/sql-reporting-services-why-does-my-report-shrink-when-its-emailed2SQL Reporting Services: Why does my report shrink when it's emailed?Josh Yeager2009-01-06T15:46:10Z2009-11-27T15:38:06Z
<p>I created a simple report and uploaded it to my report server. It looks correct on the report server, but when I set up an email subscription, the report is much narrower than it is supposed to be.</p>
<p>Here is what the report looks like in the designer. It looks similar when I view it on the report server: [<a href="http://img58.imageshack.us/img58/4893/designqj3.png" rel="nofollow">http://img58.imageshack.us/img58/4893/designqj3.png</a>]</p>
<p>Here is what the email looks like: [<a href="http://img58.imageshack.us/img58/9297/emailmy8.png" rel="nofollow">http://img58.imageshack.us/img58/9297/emailmy8.png</a>]</p>
<p>Does anyone know why this is happening?</p>
http://stackoverflow.com/questions/1201952/can-i-get-the-visual-studio-2008-report-designer-to-look-like-the-visual-studio-22Can I get the Visual Studio 2008 report designer to look like the Visual Studio 2005 report designerJon Erickson2009-07-29T17:52:31Z2009-11-27T15:21:01Z
<p>I liked the grid points and the visible separation of the header/body/footer of the report on the design surface or vs2005.</p>
<p>I hate the vs2008 report designer which is just a blank canvas with no grid lines/points and separation of header/body/footer...</p>
http://stackoverflow.com/questions/1808034/ssrs-how-to-render-child-datasets0SSRS - How to render child datasetslongeasy2009-11-27T10:46:40Z2009-11-27T10:52:43Z
<p>I'm designing a SSRS report in Visual Studio for use as a local report (so a SQL Server is not involved).</p>
<p>I have a table with customers/addresses that has the following columns:<br>
AddressID<br>
Firstname<br>
Lastname<br>
Street </p>
<p>Another table keeps orders and looks like this<br>
OrderID<br>
CustomerAddressID<br>
ShopAddressID </p>
<p>So two columns from my order table link to datasets in the address table. I want to display both addresses in my report. The datasource for the report is a xsd dataset. </p>
<p>What's the best way to do this in SSRS? I'm pretty new to SSRS and kind of lost with the dataregions, lists, etc.</p>
http://stackoverflow.com/questions/290309/i-need-help-to-customise-the-error-message-in-ssrs0I need Help to customise the error message in SSRSsuni2008-11-14T14:54:32Z2009-11-27T04:00:03Z
<p>I have SSRS REport accessing from Report Server. Is there any way i can give an error message of my own, if my report is failing to open there. </p>
http://stackoverflow.com/questions/1266427/sql-join-history-table-to-active-table-ssrs-report0sql join history table to active table SSRS reportAndrew Jahn2009-08-12T14:12:51Z2009-11-27T03:39:37Z
<p>I'm trying to pull results from a database (sql server 2005) which takes 4 tables:
Subscriber S, Member M, ClaimLines L, ClaimHistoryLines H</p>
<p>Query is as follows:<br></p>
<pre><code>select S.SBSB_ID, M.MEME_NAME,
(CASE L.CLCL_ID WHEN '' THEN H.CLCL_ID ELSE L.CLCL_ID END) AS CLAIM_ID
FROM CMC_CDDL_CL_LINE L, CMC_MEME_MEMBER M LEFT OUTER JOIN CMC_CLDH_DEN_HIST H
ON H.MEME_CK = M.MEME_CK, CMC_SBSB_SUBSC S
WHERE
S.SBSB_ID = '120943270' AND
L.MEME_CK = M.MEME_CK AND
M.SBSB_CK = S.SBSB_CK
</code></pre>
<p>This query successfully pulls in the result rows from the ClaimLines L table but no results from the History table are shown. I'm not sure how to do this, any sql experts out there that can help would be great. -Thanks!</p>
http://stackoverflow.com/questions/1803459/how-to-avoid-summing-of-numbers-in-report-model-in-sql-server-reporting-services0How to avoid summing of numbers in report model in SQL Server Reporting Serviceshuttelihut2009-11-26T12:40:50Z2009-11-26T12:40:50Z
<p>In a report model I have some entities which have attributes which are integers (set to integer datatype) but should not be summed or aggregated in any way.
For examples ID's.
But when I create reports with the wizard, sometimes the report builder will try to sum the values even though it doesn't make sense to sum ID's.
For example let's say I have a list of cars sold in a month. In january I've sold 2 cars, one with the ID 101 and one with the ID 210. In report builder I will then - when using the wizard - get the number 311 for the summed values. I can remove it afterwards, but I would like this to not happen at all (since the end-users will be confused) </p>
<p>I need a way to say to the report model: This is an integer, but it is not really a number you should sum up</p>
http://stackoverflow.com/questions/1803315/report-fails-with-a-severe-error-occurred0Report fails with 'A severe error occurred...'graham.reeds2009-11-26T12:06:25Z2009-11-26T12:12:32Z
<p>I have a report that calls 5 stored procedures, 3 of which are used for the display of data.</p>
<p>The stored procedures work fine if called from Query Analyzer.</p>
<p>However in Preview Mode in Visual Studio 2008 and on the Web Page it would throw an error on the last procedure - GenerateInstallReport. This report </p>
<ul>
<li>takes 4 parameters (customer id, from, to and user id),</li>
<li>calls 1 internal store procedure, </li>
<li>returns 12 columns (one of which is a large (3072 characters) varchar field), </li>
<li>takes approximately 1 second to run and </li>
<li>returns (for the testing time period) 9 rows.</li>
</ul>
<p>I had the SysAdmin enable remote errors on and the error became a little more specific with:</p>
<blockquote>
<p>An error occurred during local report processing. <br>
A error has occurred during report processing. <br>
Query exectuion failed for dataset 'GenerateInstallReport'. <br>
A severe error occurred on the current command. The results, if any, should be discarded. <br></p>
</blockquote>
<p>If I am to delete this procedure from the dataset the report completes fine (the meat of the report takes about 2 mins to complete).</p>
<p>Reducing the number of parameters returned in the procedure seems to point the very last field returned from the procedure which is a datetime. If this is commented out and the corresponding field from preview then it works. There is nothing special about this field apart from they are all null for that time period. However I have other reports that have null datetime fields but they aren't the last field in the report. Moving the field from last doesn't have an effect. Just simply returning the field seems to the cause the failure.</p>
<p>It is running on SQL Server 2008 Sp1 with cumulative update 4 installed. All 5 procedures have their permissions set to public. The called procedure is also set to public.</p>
http://stackoverflow.com/questions/1802803/reportviewer-table0ReportViewer Tablepazuzu2009-11-26T10:15:16Z2009-11-26T11:09:19Z
<p>Hi,
Any idea how can i accomplish the next scenario in a rdlc?
I have some rows (PrimaryKey,col1,col2,col3)
I want to display a table like this:</p>
<p>Labels of my fields......| FirstRowValues......| SecondRowValues |...
<hr></p>
<p>Label for Primary key | PrimaryKey1.Value | PrimaryKey2.Value.|...<br>
Label of col1..............| Col1.Value(row 1)...| Col1.Value(row 2)...|...<br>
Label of col2..............| Col2.Value(row 2)...| Col2.Value(row 2)...|...<br>
........... .......... .............. </p>
<p>In other words, instead of having my database rows being repeated on diferrent rdlc rows, i would like to have them repeated on different columns.</p>
<p>I hope i was clear enough about what i'm looking for.
Thanks in advance</p>
<p>ps:sorry for that dots, didn't know how to display blank spaces</p>
http://stackoverflow.com/questions/1799119/app-config-for-data-provider-extension-in-sql-server-reporting-services-20080App.config for Data Provider Extension in Sql Server Reporting Services 2008Thomas2009-11-25T18:44:49Z2009-11-25T18:44:49Z
<p>I am trying to create a data provider extension for SQL Server Reporting Services that will call a WCF services. I have the data provider extension configured and executing, however, when making the call to the WCF service it cannot find the end point. I am assuming that I don't have the element in the proper place. Since I am only working in the developent I have only tried putting it in the RSReportDesigner.config in the following spots:</p>
<p>Right under the top-level configuration
...</p>
<p>Under my extension
... </p>
<p>Under configuration in my extension
... </p>
<p>The error is that the endpoint is missing.</p>
<p>Thanks for the help,
Tom</p>
http://stackoverflow.com/questions/1797180/using-a-shared-data-source-for-dynamically-generated-and-deployed-reports1Using a shared data source for dynamically generated and deployed reportsmarc_s2009-11-25T14:17:00Z2009-11-25T14:22:03Z
<p>I'm dynamically generating RDL files for SSRS 2008, assembling my reports from "building blocks" which I defined as reports on Report Server, and which I use as subreports on my generated report.</p>
<p>On my Report Server, I have a single, shared data source which does work as long as I run stuff directly on the report server.</p>
<p>What I'm trying to accomplish is this:</p>
<ul>
<li>my generated main report should reference that shared data source</li>
<li>my subreports contained on the generated main report should also use the same data source</li>
<li>after I deploy the report to report server using the webservice interface, I'd like to be able to actually see the report right away</li>
</ul>
<p>For now, I can generate and validate my RDL just fine, I can deploy it to the report server just fine, too - it shows up and all, great.</p>
<p>But when I try to view the report, I get an error that my data source is invalid or has been removed or something....... </p>
<p>What am I missing?? I am pretty sure I have the right data source - GUID for it and all - and the names do match. How do I tell a generated RDL to use the shared data source already present on the server??</p>
http://stackoverflow.com/questions/1555007/missing-report-in-history0Missing report in History?Jon2009-10-12T14:48:20Z2009-11-25T12:00:02Z
<p>I have a scheduled SSRS report that runs at 5am and takes 5s to process, the output of this task normally appears in the History tab. This morning the report is not in the history tab! A manually run report does appear, and on checking the actions for the morning, SQL5 says that the action ran successfully. My question is this; Has any one else come across missing scheduled reports from their history tab, and if so what can be done to stop it happening again?</p>
http://stackoverflow.com/questions/1795663/ssrs-2005-group-page-numbers-resetting-view-xx-from-xx0SSRS 2005: Group page numbers resetting, view xx from xxAevdox2009-11-25T09:19:51Z2009-11-25T10:58:49Z
<p>I tried to find any solution, saw a lot of similar questions on different sites, but still have no appropriate solution.</p>
<p>So, the situation is following:</p>
<p>On SQL Server 2005, Reporting services I have printed form (ex. "invoice"), which can be multi-page. I need to print a lot of such forms (ex. all "invoices" for specified customer and for specific period) by one click. I put the layout in the table and group all info by the invoice number, so for the whole printed form it's fine, I've got, what I want. For all, except page numbering. Each invoice, if it's multi-page, should have in the footer page numbering like "page xx from xx". I found, how can I reset page number, but I don't get if it's possible to calculate total number of pages for group. Have somebody solved it? thanks</p>
http://stackoverflow.com/questions/1715282/make-sql-server-reporting-services-use-metric-measurements2Make SQL Server Reporting Services use metric measurementsmarc_s2009-11-11T13:49:49Z2009-11-25T08:45:59Z
<p>I'm newly getting into creating and programming reports using SQL Server Reporting Services. </p>
<p>One thing that bugs me right off the bat: I can't seem to find an easy way to tell the BIDS (Business Intelligence Dev Studio, a.k.a. Visual Studio) to use the <strong>metric system</strong> for measurements - you know - millimeters, centimeters etc., instead of inches and so on.</p>
<p>I was trying to figure out whether that's a setting inside Visual Studio (and if so: where is it??), or whether this depends on the Reporting services instance we're going against (and again: if so, where the heck can I change that???).</p>
<p>There must be a way to change this!! Except for the US, no one in the world is still measuring in inches..... c'mon - the world at large has long since adopted the metric system! Don't tell me Microsoft makes me go back into the dark ages.....</p>
http://stackoverflow.com/questions/922506/what-are-the-valid-style-format-strings-for-a-reporting-services-ssrs-expressio3What are the valid Style Format Strings for a Reporting Services [SSRS] Expression?Jon Erickson2009-05-28T18:39:21Z2009-11-25T02:17:46Z
<p>I am trying to figure out the style string for the Format(Expression as Object, Style as String) function in a Reporting Services expression.</p>
<p>I can't find where these style format strings are documented!</p>
<p>Specifically I am trying to format a Price field to be always 2 decimal places.</p>
<p>ie 1.5 formats to $1.50</p>
http://stackoverflow.com/questions/1790349/render-pdf-in-ssrs-2008-with-digital-signature-block0Render PDF in SSRS 2008 with digital signature block.Joe2009-11-24T14:15:35Z2009-11-24T20:00:26Z
<p>We are using SSRS 2008 to render pdf reports for our users. They would like the capability to digitally sign these reports. Is there anyway to add a digital signature block to a pdf file using SSRS 2008?</p>
http://stackoverflow.com/questions/1792369/report-builder-2-0-ssrs-filtering-in-row-groups-how-to-show-only-filtered-va0Report Builder 2.0 - SSRS - filtering in Row Groups: how to show only filtered values in the totals?Aedna2009-11-24T19:28:15Z2009-11-24T19:28:15Z
<p>I have an aging report with totals per patient and per month.</p>
<p>I need to have months as column groups and patients as row groups.</p>
<p>plus I need to filter out patients, whose totals overall (for all months) were negative.</p>
<p>I created a Row Group filter per patient with condition SUM(Totals) < 0. However, the row that shows the Grand total of all the table, still counts the values which were filtered out.</p>
<p>Is there any possible trick to make totals account only for filtered values?</p>
<p>Thank you very much!</p>
http://stackoverflow.com/questions/1790767/defer-report-execution-until-after-parameters-are-chosen0Defer report execution until after parameters are chosenClodoaldo2009-11-24T15:23:28Z2009-11-24T16:36:28Z
<p>The first time a parametrized reporting services report is called it is automatically executed with the default parameters which takes too long.</p>
<p>Is there a way to prevent the report from being executed until the "View Report" button is clicked when the correct and more restrictive parameters will be already chosen?</p>
http://stackoverflow.com/questions/1789019/ssrs-and-mdx-causes-vstudio-to-crush0SSRS and MDX causes VStudio to crushtsvika2009-11-24T09:47:42Z2009-11-24T09:47:42Z
<p>Hi</p>
<p>I am trying to generate a report using reporting services in visual studio 2005. the data source is in MDX DB and was created successfuly. When I save the query in the query builder window it closes and displays an alert : "the query cannot be read from the query window, please check for syntax errors"
and then VS crushes!</p>
<p>the query has no parameters and works on management studio without any problems.</p>
<p>I have installed all of my win updates, but sql server sp3 (that had a problem)
I also have service pack 2 for my framework</p>
<p>any idea what is going on?</p>
http://stackoverflow.com/questions/168427/compare-sql-server-reporting-services-to-crystal-reports9Compare SQL Server Reporting Services to Crystal ReportsRBS2008-10-03T19:13:26Z2009-11-24T02:43:22Z
<p>Can any one tell me from crystal report and SSRS (Sql Server Reporting Service) which one is better to use?</p>
http://stackoverflow.com/questions/1717368/how-do-i-share-an-image-between-projects-in-microsoft-sql-server-reporting-servic1How do I share an image between projects in Microsoft SQL Server Reporting Services 2005?Woody Zenfell III2009-11-11T19:04:12Z2009-11-23T16:22:19Z
<p>I have a SQL Server 2005 Reporting Services solution containing several reporting projects. (I need separate reporting projects so that I can deploy reports to the correct folders on the report server.)</p>
<p>We want to include our company's logo in the header of each report.</p>
<p>I don't want to bake the logo image into each report ("embedded"); nor do I want to include a copy of the logo in each reporting project.</p>
<p>Still, I would like for the logo to "live" in the solution and on the report server one way or another so it's packaged up with the reports and gets deployed along with the reports.</p>
<p>How?</p>
http://stackoverflow.com/questions/1717500/how-can-i-share-a-data-source-between-multiple-projects-in-microsoft-sql-server-20How can I share a Data Source between multiple projects in Microsoft SQL Server 2005 Reporting Services and keep Visual Studio "Preview"?Woody Zenfell III2009-11-11T19:31:12Z2009-11-23T16:19:19Z
<p>I have a solution that contains multiple reporting projects (one per target deployment folder - I think this is the only way to achieve this effect, at least until I abandon Visual Studio for report deployment).</p>
<p>I want to specify my data source information "once and only once" for all these reports.</p>
<p>So far, I have created a separate reporting project that contains my shared data source. If I deploy things to a reporting server in the right order and offer sufficient prayers to appropriate gods, the reports seem to link up to the shared data source there and run (at least via the Report Manager in IE).</p>
<p>When I am developing a report, though, I can no longer "Preview" to try it out locally - I now <em>must</em> deploy it to a report server to try running it. This is a hassle.</p>
<p>Is my only recourse to add a whole bunch of copies of a data source (pointing at my development database), one in each project, set those not to deploy off my machine, and (probably) exclude them from source control?</p>
http://stackoverflow.com/questions/1783859/ssrs-chart-w-series-and-mean0SSRS Chart w/Series and MeanBen2009-11-23T15:28:40Z2009-11-23T15:28:40Z
<p>Hi all,</p>
<p>I have a chart I'm making in SSRS.</p>
<p>My database is returning data like this:<br>
Period Name, Question, Answer, Count, Mean, Median<br>
Nov 09, Can Haz Chezbrgr, Yes, 5, 4, 3.1<br>
Nov 09, Can Haz Chezbrgr, No, 3, 4, 3.1<br>
Nov 09, Can Haz Chezbrgr, DK, 2, 4, 3.1</p>
<p>Period Name is the primary grouping, question is the same for all rows. Answer varies as does count. The mean and median are calculated based on period name & count, but are the same for all values in each period.</p>
<p>I have a chart in SSRS that's plotting the Answers by period. I'm trying to add the mean as a single plotted item. The problem is that the mean text is showing up once for each answer in the legend, but only once in the chart (this makes sense since the values are all the same.</p>
<p>Here is an example chart:</p>
<p><img src="http://img149.imageshack.us/img149/7849/meann.jpg" alt="Chart"></p>
<p>Here is what my report definition looks like:</p>
<p><img src="http://img688.imageshack.us/img688/5025/meandefined.jpg" alt="Chart"></p>
<p>Ideally, I'd like to have only one entry in the legend for Mean, with no association to the answer. Is this possible?</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1143286/can-parameter-be-greyed-out-in-ssrs-20050Can parameter be greyed out in SSRS 2005?san2009-07-17T13:32:40Z2009-11-22T20:00:03Z
<p>Hi,</p>
<p>In one of my SSRS report i had a requirement asking to grey out one parameter based up on the selection of some other parameter value. i did a work around and couldn't find anything of that sort.</p>
<p>Is there any other way that i should know?</p>
<p>Thanks,
San</p>
http://stackoverflow.com/questions/1648897/excel-export-of-ssrs-report-shows-outdated-data0Excel Export of SSRS Report shows outdated datanojetlag2009-10-30T09:53:31Z2009-11-20T09:47:26Z
<p>I have an SQL Server Reporting Services (SSRS) report, that uses a view. That few had to be adjusted yesterday. Now the report shows online the correct data, however as soon as I click on export to Excel it seems to bring to outdated data. Opening the Excel yields data that was correct before the view adjustment. Is this Excel Version somewhere cached ? Or what could explain this strange behavior ? </p>
http://stackoverflow.com/questions/1759798/visual-studio-2008-report-server-project-design-view-not-working0Visual Studio 2008 Report Server Project Design View not working.skynate2009-11-18T23:10:22Z2009-11-19T17:14:38Z
<p>When I create a new Reporting Services report or try to open an existing report (that has been working) in Visual Studio 2008. I cannot view the design. I get no error message and it only shows html code in the "Design View". I've tried reinstalling VS2008 and BIDS, but hasn't worked. This was all working when I last used it 2 weeks ago.</p>
<p>-nate</p>
http://stackoverflow.com/questions/1764091/ssrs2005-timeout-error0SSRS2005 timeout errorjaspernygaard2009-11-19T15:28:08Z2009-11-19T15:40:55Z
<p>Hi</p>
<p>I've been running around circles the last 2 days, trying to figure a problem in our customers live environment. I figured I might as well post it here, since google gave me very limited information on the error message (5 results to be exact).</p>
<p>The error boils down to a timeout when requesting a certain report in SSRS2005, when a certain parameter is used. </p>
<p>The deployment scenario is:
Machine #1 Running reporting services (SQL2005, W2K3, IIS6)
Machine #2 Running datawarehouse database (SQL2005, W2K3) which is the data source for #1
Both machines are running on the same vm cluster and LAN.</p>
<p>The report requests a fairly simple SP - lets called it sp(param $a, param $b).
When requested with param $a filled, it executes correctly. When using param $b, it times out after the global timeout periode has passed. </p>
<p>If I run the stored procedure with param $b directly from sql management studio on #2, it returns the results perfectly fine (within 3-4s). </p>
<p>I've profiled the datawarehouse database on #2 and when param $b is used, the query from the reporting service to the database, never reaches #2.</p>
<p>The error message that I get upon timeout, when using param $b, when invoking the report directly from SSRS web interface is:</p>
<p>"An error has occurred during report processing.
<strong>Cannot read the next data row for the data set DataSet.</strong>
A severe error occurred on the current command. The results, if any, should be discarded. Operation cancelled by user."</p>
<p>The ExecutionLog for the SSRS does give me much information besides the error message rsProcessingAborted</p>
<p>I'm running out of ideas of how to nail this problem. So I would greatly appreciate any comments, suggestions or ideas.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1763869/how-can-i-get-the-date-format-from-an-ssrs-report-from-the-web-service-interface0How can I get the date format from an SSRS report from the web service interface?Mr Grieves2009-11-19T14:58:10Z2009-11-19T14:58:10Z
<p>I get report params in C# code from the webservice as follows:</p>
<pre><code>ReportingService2005 ReportingService = ConnectToSSRS();
ReportParameter[] ReportParams = ReportingService.GetReportParameters(reportSelector.SelectedValue, HistoryID, ForRendering, emptyParams, null);
</code></pre>
<p>DateTime parameters currently seem to always come up as mm/dd/yyyy. Where is the date format defined? It's not hardcoded like this is it? Is there a way for me to obtain the DateFormat from code?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/566618/ssrs-mysterious-extra-pages0SSRS mysterious extra pages2009-02-19T18:47:00Z2009-11-19T04:00:03Z
<p>I have two reports that are setup with the same page dimensions- A4 portrait, with page margins of 1cm.</p>
<p>When I run the reports seperately and print them they both come out as expected: fitting into the width constraint of the page.</p>
<p>However, when I include one report as a subreport in the other and then run and print the "master" report I start to experience problems. Even though both reports appear I get extra blank pages appearing every other page in the output.</p>
<p>I'm sure I'm missing a simple trick - probably with the page sizes of the two reports but I can't figure it out - any pointers?</p>
<p>I don't mind changing the setup of the subreport as it will never be run as a seperate eport in the wild, I only included that step to prove that it did indeed fit within the page!</p>