reporting-services

Why Does Business Intelligence Studio Load Reports Faster than the Report Server

≯℡__Kan透↙ 提交于 2019-12-11 14:47:08
问题 In Visual Studio 2008 Business Intelligence Studio, reports preview many times faster than on the report server. Why does this happen and is there a solution to this? 回答1: In BIDS, it holds a cache, so that the query is not executed every time you preview the report. So it seems fast, however on the reportserver it will need to get all of the data for the report with every request (unless it is cached). Rendering might also be an issue, IE does not have the best reputation on rendering speed

Cannot see all the labels on the x asis in an ssrs column chart

吃可爱长大的小学妹 提交于 2019-12-11 14:29:42
问题 I have a column graph as shown below. It shows only a few x axis labels. I want it to show all the x axis labels. Is there a way this can be done ? I tried changing the size of the chart and this doesnt work 回答1: Duplicate question: SSRS chart does not show all labels on Horizontal access Best answer was: To fix this, under the "Chart Axis" properties set the Interval value to "=1". Then all the labels will be shown 来源: https://stackoverflow.com/questions/21056447/cannot-see-all-the-labels-on

Needing to transform proc results into SSRS

醉酒当歌 提交于 2019-12-11 14:25:31
问题 I have a proc that produces a results set that is exactly what I need but I am having an issue putting that into SSRS. The issue is that the report is looking for 6 different value ranges and what plans fall into those values ranges. Using a query field wont work because there are more than one row per column. So i am confused on what to do proc results: Report Layout: 回答1: First of all, i'm confused and yet not clear about your question but if i understand it right then you just have to add

Integrated Security on Reporting Services XML Datasource

醉酒当歌 提交于 2019-12-11 14:21:35
问题 I am working on setting up my report server to use a web service as an XML datasource. I seem to be having authentication issues between the web service and the report with I choose to use Integrated security. Here's what I have: 1) I have a website w/ an exposed service. This website is configured to run ONLY on Integrated Security. This means that we have all other modes turned off AND Enabled anonymous access turned off under directory security. 2) Within the Web.config of the website, I

Error when trying to view SSRS Subscriptions in Report manager Url

懵懂的女人 提交于 2019-12-11 14:21:24
问题 Our report server database was moved to a new environment. Subscriptions work well with most users/owners. However, we have issues with one not working. changes were made with the query below: DECLARE @OldUserID uniqueidentifier DECLARE @NewUserID uniqueidentifier SELECT @OldUserID = UserID FROM dbo.Users WHERE UserName = 'DOMAINA\OldUser' SELECT @NewUserID = UserID FROM dbo.Users WHERE UserName = 'DOMAINA\NewUser' UPDATE dbo.Subscriptions SET OwnerID = @NewUserID WHERE OwnerID = @OldUserID

SSRS Report Builder 3.0 Row Grouped records count

北慕城南 提交于 2019-12-11 14:08:52
问题 Need help to display the grouped row count in report builder. I want to get the rowcount of grouped records. RowCounts("DatasetName") is giving the total rowcount of the dataset but if the dataset is grouped in reports it still gives the total row count. i want to display the grouped records count. Thanks in advance. Thanks 回答1: I use =CountRows() or =CountRows("Group_Description") instead, where "Group_Description" is whatever you've named the group. 来源: https://stackoverflow.com/questions

table of contents in ssrs

放肆的年华 提交于 2019-12-11 13:58:38
问题 I'm looking for a tutorial or sugestions on how to build table of contents in an ssrs report, something like this: I'm almost there, the only problem is I cannot figure out how to calculate page numbers of the row in a table. Can it be done with bookmarks? or maybe a document map? 回答1: I don't believe this is possible in SSRS (deriving sequential page numbers in the body section of the report), since page numbers are only valid in page headers. However, you could use the page name property of

installing second instance of reporting service

旧街凉风 提交于 2019-12-11 13:57:56
问题 getting confused here. I'm trying to install a second instance of reporting service sql server 2008 r2. Now does it mean I need to install a second instance of sql server or can i use the existing sql server instance to create anothe reportserver database? 回答1: for 2005 I know that you would have to run setup again to install another instance. I am not sure if they changed it in later versions, although I believe it is still the same. 回答2: See "Installing Multiple Instances of Reporting

Set parameter back to default value in SSRS

雨燕双飞 提交于 2019-12-11 13:50:45
问题 Is there a way that a parameter value can be reset to it's default once the 'view report' button has been pressed. I have a report with a free text input parameter that inserts users comments into a sub report contained within this report. They add their notes then hit view report, this re runs the report with their notes visible. The only problem is that the parameter box still contains the note they added previously - I've set the parameter to have a default value of ' ' which works the

Rename Excel sheets with Reporting Services 2008 R2

我的未来我决定 提交于 2019-12-11 13:47:19
问题 I have 2 tablix's. I have entered a page break after the first tablix so that the tables show up on two sheets. However, each sheet is named Sheet1 and Sheet2. How do I give it its own unique name automatically through the reporting services application? 回答1: When exporting to Excel, you can set the first sheet name with the Report -> InitialPageName property: Further sheets are triggered by page breaks, and in SSRS 2008R2 and above you can name sheets using the PageName property. This can be