reporting-services

Bulk uploading images to SSRS

泪湿孤枕 提交于 2019-12-04 19:13:05
We have used the excellent RSBuild for bulk uploading reports to SQL Server Reporting Services (SSRS) but I find no way to bulk upload images. Using the Report Manager to upload one image at a time is silly. The difficulty is that the SQL Server Reporting web service that RSBuild uses doesn't support image uploads. Is there a way to bulk upload images to SSRS in some other fashion? You will need to upload one image manually first so you read the contents of the Catalog table for the image row it inserted in the ReportServer database and use the ParentId, PolicyId and CreatedById and

difference between RDLC and SSRS

瘦欲@ 提交于 2019-12-04 19:07:57
问题 what is the difference between local/Web data reports (RDLC) and SSRS? 回答1: SSRS (SQL Server Reporting Services) is a part of some editions of Microsoft SQL Server (SQL Server Express with Advanced Services as well as the non-free verisons). It allows you to process server-side reports ( .rdl files). The ReportViewer control included in Visual Studio allows you to process client-side reports ( .rdlc files). It does not require SQL Server. Since both components use the same reporting engine,

Reporting Services availability SQL Server Express 2008 R2

你离开我真会死。 提交于 2019-12-04 18:44:51
问题 I am trying to add Reporting Services to my already installed version of SQL Server Express 2008 R2. I am installing it on a Windows Server 2008 R2 Standard edition box. When ever I run the install program to add extra features Reporting services is not listed. I have installed (I think) all the prerequisites needed IIS, ASP etc but to no avail. Reporting services are just not visible in my features list. Any ideas? 回答1: SSRS is only available in the SQL Server 2008 Express with Advanced

Convert a date to an integer in YYYYMMDD format in SSRS

 ̄綄美尐妖づ 提交于 2019-12-04 18:34:15
What is the equivalent expression in SSRS of the following conversion of a date (@Date) in T-SQL? CONVERT(INT,CONVERT(CHAR,@Date,112)) I need the date parameter value to be converted to an integer in YYYYMMDD format. Assuming you have a date parameter called YourDate . You could use the following expression: =Cint(Format(Parameters!YourDate.Value, "yyyyMMdd")) Explanation: Step 1: Format the date to the yyyyMMdd format: Format(Parameters!YourDate.Value, "yyyyMMdd") Step 2: Cast the result as an int: Cint(<FormattedDate>) Dry coding here, but try... =Fields!MyDateColumn.Value.Year * 10000 +

How to print Jasper Reports in a specified printer?

和自甴很熟 提交于 2019-12-04 18:18:56
问题 All I want, is to print a JasperReport without user selecting a printer. I searched for it but there is no good solution that works. This is the relevat part of my code: //compile to .jasper String report = JasperCompileManager.compileReportToFile(sourceFileName); //fill the report JasperPrint jasperPrint = JasperFillManager.fillReport(report, parameter, dataSource); //print the report JasperPrintManager.printReport(jasperPrint, true); Instead of simple printReport i want to select a printer.

Dataset with dynamic columns in tablix/matrix

青春壹個敷衍的年華 提交于 2019-12-04 18:01:51
I have a dataset that can come with 5 columns, columns 6, 7, 10, 20, or even 100. At least two are static, the remaining are dynamic (am making a scale according to a table exists in the database). How can I implement this in Reporting Services? How do I specify the field of tablix that the value is dynamic? The end result would be this: | TITLE | ENUNCIATION | GOOD | VERY GOOD | BAD | VERY BAD | ------------------------------------------------------------- | title 1 | question 1 | 5 | 3 | 1 | 0 | | title 2 | question 2 | 1 | 0 | 3 | 0 | | title 3 | question 3 | 0 | 0 | 1 | 0 | | TITLE |

Generate report from URL - SQL Server Reporting Services 2008

╄→гoц情女王★ 提交于 2019-12-04 17:50:43
问题 I have SQL Server Reporting Services 2008 and when I open the following URL: "http://localhost/Reports/Pages/Report.aspx?someReport" I'm getting report screen in which I fill my parameters and generate a report, My question is how can I do this without any GUI? by batch file or C# script.. Thanks in advance. ========================================================================= EDIT: Thanks to all answer above I succeed to generate a report and save it as an XML using the following link:

How do you populate an SSRS TextBox with a DataSet value?

自闭症网瘾萝莉.ら 提交于 2019-12-04 17:40:39
问题 Dear community member, Given a specific Key (e.g. "user_name"), how does one populate an SSRS TextBox with the corresponding DataSet Value (e.g. "John Doe")? Any insight you can provide would be greatly appreciated! CONTEXT SQL Server = 2008 R2 IDE = Visual Studio 2012 ReportData DataSet contains data used to populate a Tablix in the body of the report HeaderData DataSet contains data used to populate two TextBox elements in the report header this DataSet contains two columns: key and value

How to get Visual Studio 2008 to edit SSRS 2005 Report Projects w/o Installing SQL Business Intelligence Development Studio 2005?

旧巷老猫 提交于 2019-12-04 17:32:26
问题 I'm trying to determine how to open/edit existing SQL Server Reporting Services (SSRS) 2005 report projects (.rptproj) and reports (.rdl) with Visual Studio 2008, without having to install SQL Business Intelligence Development Studio (BIDS) 2005. 回答1: You cannot. Check this forum posting which has a reponse from Microsoft. Yes, it was an active decision that the 2008 design evironments would not support continuous backwards compatability but would rather be a one way upgrade. This was not a

SSRS giving a blank page at the end of report [duplicate]

一笑奈何 提交于 2019-12-04 17:28:19
问题 This question already has answers here : How to get rid of blank pages in PDF exported from SSRS (13 answers) Closed 2 years ago . I am getting a blank page, at the end of my report in SSRS 2005 . I have a header logo and footer date values, and I have set the both to PrintOnLastPage = False , but I am still getting a blank last page. Any ideas how to eliminate it? Thanks! 回答1: This solution applies for SSRS 2008 R2. I am not sure about earlier versions. On Report Properties page, under