reporting-services

SSRS and Firebird Database (ODBC Connection issues in Report Manager)

雨燕双飞 提交于 2019-12-24 12:11:57
问题 I have a Windows 7 OS (64-bit). I have data coming from Firebird database, and reports in Microsoft SSRS. I am able to write queries and successfully retrieve data in the BIDS (SSRS 2008), as well as in SSDT (SSRS 2012). However, when I deploy the reports in Report Manager in the IE browser, I get these 2 errors: ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (this is when I use the ODBC Connection as a User DSN) (or) ERROR [IM014]

TSQL - Case Date Compare

余生长醉 提交于 2019-12-24 12:11:52
问题 I am trying to compare a date in SQL and create a new field to allow me to group the results by Todays date and other date(s). I am converting both dates to CHAR. However i am getting an expression error near = and ) - This is for an SSRS report. There is already a fairly complex SQL statement and i am just trying to add this extra statement to help in grouping. Here is an example. Case WHEN Convert(Char(8), FieldDate, 103) = Convert(Char(8), GetDate(), 103) Then tmpDate = '1' ELSE tmpDate =

SSRS: Recursive Parent Child

て烟熏妆下的殇ゞ 提交于 2019-12-24 12:08:57
问题 I want to create hierarchical report in SSRS using this simple table? Could you please help me? I follow the tutorial here: https://www.mssqltips.com/sqlservertip/1939/working-with-a-parent-child-hierarchy-in-sql-server-reporting-services-ssrs/ but I can't figure out how the EmployeeKey and ParentEmployeeKey apply to my table. As far As my table concern Col2 Is the Employee and Col1 is the parent. But in SSRS when I group by Col2 and Recursive Parent is COL1 I don't get the desired result.

is it possible to get SQL Server Reporting Services on Android?

自古美人都是妖i 提交于 2019-12-24 10:56:57
问题 I want to create an Android application that show the sales report from SQL Server database using SQL Server Reporting Services. Is is possible to get the data from SQL Server into Android application? and if it's impossible, is there any alternative way to get the data from SQL Server and make the report into Android Application? thanks 回答1: You can't technically get "Reporting Services to run on Android", there is no native Android component AFAIK comparable to the Winforms ReportViewer.

Suppressing page breaks upon exporting a Reporting Services report to Excel

假装没事ソ 提交于 2019-12-24 10:53:05
问题 When exporting a multi-page report from SQL Server 2008 Reporting Services to Excel, by default, pages in the report created by a page break are sent to separate worksheets in the Excel file. While this is fine most of the time - sometimes it's not. Right now, I'd like to be able to prevent those page breaks from causing additional worksheets to be created - I really would like to export all my pages into a single Excel worksheet and basically just ignore the page breaks (or replace them with

SQL Server Reporting Service - Reference another dataset?

元气小坏坏 提交于 2019-12-24 10:06:23
问题 I have two datasets in a SQL Server 2008 reporting services report. I need to attach a WHERE clause to the second one that will contain a value from the first one. How should I write that second query? 回答1: If I understand what you are asking, you should run a SUB query within the where clause. SELECT title FROM books WHERE author_id IN (SELECT id FROM authors); 来源: https://stackoverflow.com/questions/5099870/sql-server-reporting-service-reference-another-dataset

Passing username and password to SSRS 2005 reports from web application

…衆ロ難τιáo~ 提交于 2019-12-24 09:59:33
问题 I want to add security to report(s) based on username and password present in my web application database. But i do not want add parameter(s) username/password in rdl file which shows password in clear text. What is the best way to perform this task? Currently, my reporting server bypass my web service? Report url directly call report on report server. Can I made to pass it via web service which can authenticate user? Any suggestions? 回答1: The method that gives you the most flexibility is to

SSRS conditional execution of dataset

做~自己de王妃 提交于 2019-12-24 09:41:31
问题 I have two different datasets in SSRS report which gives different number of output fields.I have used this two data set into two different tables in report. 1) One table will display output at a time in execution based on condition. Actually while running the report two datasets are executing the SP and it takes more time to display the output. Requirement: I need to execute the one dataset SP at time based on condition.Other Dataset SP should not Execute. Example: Dataset1 executes Sp1

Reportviewer and report are in different projects in the same solution. How do I attach the report to the viewer

☆樱花仙子☆ 提交于 2019-12-24 08:59:17
问题 I have a forms application and it has a reportviewer in it. In the same solution, but different project, I have a report (rdl). I would like to use the report in the different project as the report displayed to the reportviewer. This is opposed to using a report that is deployed to a server. I originally had this report deployed to a local reporting server. I was using that deployment to display to the reportviewer. However, I would like to use a local one, so that I can upload this to a

SSRS 2005 find name of column with max value

て烟熏妆下的殇ゞ 提交于 2019-12-24 08:58:10
问题 The column on the far right is what I'm trying to add to my report. Is this possible to do without modifying the query to use something like Unpivot? Step X Step W Step A Step B Step Y Last Step --------------------------------------------------------------------- 1/21/2013 1/24/2013 1/3/2013 1/5/2013 1/7/2013 Step W This is a step in the right direction, but it appears to only work in SSRS 2008: http://www.bigator.com/2012/04/26/spothighlight-minimum-and-maximum-values-in-each-row-in-matrix