reporting-services

How to pass multiple values to single parameter in stored procedure

不想你离开。 提交于 2019-12-18 13:16:24
问题 I'm using SSRS for reporting and executing a stored procedure to generate the data for my reports DECLARE @return_value int EXEC @return_value = [dbo].[MYREPORT] @ComparePeriod = 'Daily', @OverrideCompareDate = NULL, @PortfolioId = '5,6', @OverrideStartDate = NULL, @NewPositionsOnly = NULL, @SourceID = 13 SELECT 'Return Value' = @return_value GO In the above when I passed @PortfolioId = '5,6' it is giving me wrong inputs I need all records for portfolio id 5 and 6 also is this correct way to

How to get the time between two TFS Work Item States in SSAS (or any other report)?

烈酒焚心 提交于 2019-12-18 13:05:20
问题 Is there a way in TFS's reports that you can get the amount of time taken for a work item to transition between states? Looking at the data in the Tfs_Warehouse database I can see that there is a record of every revision of a work item, and using TSQL, I could write a query to get the ChangedDate of each state change and diff them. Sadly I lack any know how of SSAS and we don't have a BI specialist at the moment. Can this be done in a way that I can produce a Report out of TFS without writing

SSRS line chart not connecting data points

扶醉桌前 提交于 2019-12-18 12:28:18
问题 I've looked high and low and can't seem to find an answer to what appears to be quite a straightforward issues (I would think). I have a line chart where there is data at several points in a series but only only one set of points link up. Does anyone know why this is? Is it to do with my data? If it is, I am struggling to see any relationships in the data that may explain this behavior. Here is what I mean: As you can see, the red diamonds should be connecting - the same could be said about

Business Intelligence for Visual Studio 2015 [closed]

梦想的初衷 提交于 2019-12-18 12:03:36
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Is there any way to get Microsoft SQL Server Data Tools - Business Intelligence for Visual Studio 2013 for Visual studio 2015 ? Or will it come later, what is the situation ? ETA : New preview release of SSDT October 2015 Preview in Visual Studio now supports .rptproj extensions. For the most recent version of

RDLC - Adding a Data Source in VS2010

允我心安 提交于 2019-12-18 10:45:10
问题 Greetings. I have an RDLC file and am wanting to add a data source to it, although without any luck so far. The data source is a custom class written by myself (just to add, we do this all the time). We recently converted over to the VS2010 RDLC format which caused some problems, but we've made some changes to our implementation that workaround the more major issues. So, back to the issue at hand, when I attempt to add my data source to the DummyDataSource list in the RDLC view in VS2010 it

SQL Reporting services: First call is very slow

人走茶凉 提交于 2019-12-18 10:44:07
问题 I've installed a SQL Reporting server (2008 R2), with some reports. But I've some performances issues. The first call of the day to the server(going on the report interface by example), is VERY slow(something like 30-45seconds at best). The report generation is then "fast"(1-2 seconds). The next calls to the server are always fasts until the next day. I've the impression that it loads a lot of thing in the memory. But what can takes 30-45 seconds to be loaded in memory??? And how to load it

How to remove spacing between bars in column chart SSRS 2012

冷暖自知 提交于 2019-12-18 09:39:54
问题 How can I remove spacing between bars in SSRS 2012 report. 回答1: In design mode, select one of the columns in the chart. In the Properties pane, look for CustomAttributes; expand that group. Look for PointWidth within that property group. Change that value from 0.8 (the default) to 0.9 for the columns to be a little closer together. Change the value to 1 if you want your columns to touch. Adjust as desired. They keep this one hidden, a bit. Hope this helps. 回答2: You need to set the PointWidth

Substitute command for OVER in SSRS

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-18 09:34:18
问题 How can I implement the OVER() command in SSRS 2008? Is there a trick to it, or am I stuck? And if I am indeed not able to use OVER(), then how can I use PARTITION in a SSRS report? OVER() satisfies my requirements, and Telerian (another member) was very helpful by pointing it out - but SSRS doesn't seem to be able to use it for reporting. Every time I use a variant of OVER() or PARTITION in the SSRS SELECT statement, I get rebuffed by the system - any thoughts or work-arounds? The error

Protect BIRT's report

随声附和 提交于 2019-12-18 09:28:58
问题 I can prevent users opening BIRT report from website that I built. But considering the report's link still in browser's history, any user from this computer still able to open the report by calling the link from history, for instance. How to prevent the link of BIRT's report stays in the browser, after user close the report? So the only way to open the report is from the website. Or maybe someone has other better method to achieve the same goal? Like showing a user name and password in BIRT,

How to create a BIRT dataset that accepts multiple (CSV) values that it can be used inside “IN” clause in select statement

天大地大妈咪最大 提交于 2019-12-18 09:26:22
问题 I am trying to create a dataset in BIRT report that contains a select statement with "IN" clause and pass a comma separate value in place of "?" using a BIRT parameter that accepts multiple values. for eg : select * from table where ID in ( ? ) I tried adding this in my dataset "select * from table where ID in ( params["paramer_name"].value)" but it is not working. I do not want to use the built in Filter of BIRT dataset because using the "IN" clause in query reduces the cost of query to lot