reportingservices-2005

Multi-value optional filters with the usage of wildcard in SSRS 2005

末鹿安然 提交于 2019-12-14 03:29:43
问题 I have asked this question before but there are no solution to it. I have created a multivalue filter with the following data-set. SELECT PASS_M, ENTRY_DT, EXIT_DT, WORKED_HRS, ACCESS_LOCATION_X, IC_N, COMPANY_M, CONSECUTIVE_D FROM TEMP_TARGET WHERE (CONSECUTIVE_D >= @consecDays) AND (ENTRY_DT BETWEEN @startDate AND @endDate) AND (ACCESS_LOCATION_X LIKE @accessVar) AND (IC_N LIKE @icVAr) It would be relatively easy if the value of my accessVar does not use wildcard but i needed that. So there

Making a filter parameter optional

血红的双手。 提交于 2019-12-13 20:04:15
问题 I am using SSRS 2005. I created a report parameter named icVar. What should i do to allow this filter to be optional. Meaning if user enter something into the textbox, will display result according to what is entered but if nothing is entered it will just treat it to display all. This is the query in my dataset. SELECT PASS_M, ENTRY_DT, EXIT_DT, WORKED_HRS, ACCESS_LOCATION_X, IC_N, COMPANY_M, CONSECUTIVE_D FROM TEMP_TARGET WHERE (CONSECUTIVE_D >= @consecDays) AND (ENTRY_DT BETWEEN @startDate

Totals in Matrix in SSRS

瘦欲@ 提交于 2019-12-13 09:43:26
问题 data in SSRS shows like this as below using the Matrix - Can someone please help me how to get the totals for BB-1,BB-2 ,AC-1 ,AC-2 below for all the countries.I am using the running value function between the dates Aug-2015 and Jan 2017 for Columns BB-1,BB-2,AC-1,AC-2. Type A always belong to BB-1 & BB-2. Type B belongs to AC-1,AC-2. row groups- Country Type Column Group Date 回答1: It sounds like you want to create a secondary matrix that displays the information with a different grouping

Add Web Reference prompts for credentials with “Discovery Credential” dialog but won't accept valid credentials

人走茶凉 提交于 2019-12-13 04:11:50
问题 I'm attempting to add a web reference to my ASP.Net 3.0 project. This is a reference to the SQL Server Reporting Services web service. I have verified the service is up and running, but when I try to add the web reference in my project, I am prompted for my credentials, which I enter, and then prompted again and again and again. I have to hit cancel to stop the vicious cycle. When I do that the service definition comes up in the window, but the "Add Reference" button is disabled so I can't

SSRS 2005: printing issue - report prints first page in portrait and rest are landscape

半世苍凉 提交于 2019-12-13 03:34:39
问题 my environment is SQL 2005, SSRS 2005 , .net 2.0 Client is experiencing following issue on two different printers. ( Canon and Lanier LD140). We have a report which is designed as landscape report. When report is send to print, First page is rendered in portrait mode(cutting of the information on the right side. ) rest of the pages print in landscape mode. did anyone have similar issue and knows how to fix it so first page gets printed in landscape mode? thanks. 回答1: We tried printing on

SQL Server Reporting Services - http 403 forbidden - website declined to show this webpage

一笑奈何 提交于 2019-12-13 02:14:29
问题 Reporting Services was working fine until recently, now when I try to deploy and run a report from Business Intelligence Studio I get this error. Similarly when I try to connect to the ReportServer URL directoy from IE Explorer, (set to http:///ReportServer I get the same error, so it's not specific to the report but probably rather to the ReportServer or IIS configuration. I went through all the Properties of the website, comparing to another website on the same machine, and it seems

Reporting Services: Overriding a default parameter with an expression in a linked report

心已入冬 提交于 2019-12-12 13:16:29
问题 So I've got a "daily dashboard" report in SSRS 2005. It has a parameter, @pDate, which defaults to "=Now". I'd like to use this same report in a linked report to show yesterday's final dashboard (which would then be mailed out via subscription), and override the parameter default with another expression, "=dateadd(d,-1,Now)." But when I change the default parameter, I get a data mismatch error (natch). I'm assuming that's the end of the line and I just need to deploy a copy of the daily

Bulk uploading images to SSRS

时光怂恿深爱的人放手 提交于 2019-12-12 09:05:47
问题 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? 回答1: You will need to upload one image manually first so you read the contents of the Catalog table for the

Reporting Services Report Timeout

蹲街弑〆低调 提交于 2019-12-12 07:33:07
问题 We have a 2005 report that can be 2 to around 250 pages with the average being in the ballpark of 10. When the report was developed, our developer was told that 10 pages or so was the right number, and without knowing the business domain very well he decided reporting services was the correct approach. Now that the report has been deployed to PROD, we are having some complaints of the report timing out. Neither the developer or I on this are terribly surprised given the sheer size of the

SSRS Grouping and repeat in 3 columns

混江龙づ霸主 提交于 2019-12-12 04:38:23
问题 I am new to SSRS report. I'm trying do make a report like the following snapshot. I'd like to represent the grouping data in 3x3 format. I've already making the red rectangle one, but I've tried some ways to make it shows as 3x3 in one page, but still in vain. I was wondering if anyone can give some suggestions? Thanks. 回答1: If you are sure that each time, you know 3x3 columns and rows , why don't you just replicate the columns and tablix ? For example, instead of 5 columns , use 15 columns