ssrs-2008

SSRS Group by in the List Report

六月ゝ 毕业季﹏ 提交于 2019-12-19 09:19:45
问题 I am working on a SSRS Report where i have to group by the Customer Name. Dataset will be something like this. Select Column1, Column2,Column2 from Customer Group by CustomerName Expected Report Layout Customer Name : Jim Mouse DOB : 12/01/1970 Column1 Column2 Column3 100 DateTwo Some Entry 200 Assignment Entered works 300 Freelance Tesing Customer Name : Sendil P DOB : 12/01/1990 Column1 Column2 Column3 100 work hard SSRS 200 Test Zone Earth world Issue, i am facing. By placing List, on

SQL Server Reporting Services very slow after migration

允我心安 提交于 2019-12-19 03:56:34
问题 Updated: Sorry! I may have missled you because of the old description. The problem did not exist right after migration, it started to appear 1 week after the migration We recently migrated our database and report server to a new database server and a new report server. Configurations Before: Database Server: 2008 Enterprise, DB01/NamedInstance Report Server: same server as database server, native mode, database credentials is NT AUTHORITY\NETWORK SERVICE Configurations Now: Database Server:

Slow Startup of SQL Reporting Services 2008 in Native Mode

我只是一个虾纸丫 提交于 2019-12-19 03:37:16
问题 We are experiencing a slow start up time on the first report request of the day, or when there have been no report requests for an unknown period of time. In SQL Reporting Server 2005 installations we would set up the App Pool to avoid recycling the Reporting Services applications. However, my client installed SQL Reporting Server 2008 on Windows Server 2008 in Native mode. There is no IIS installation that I can locate. I've checked through the SQL Reporting Service Configuration Settings,

SSRS code variable resetting on new page

旧城冷巷雨未停 提交于 2019-12-19 00:57:28
问题 In SSRS 2008 I am trying to maintain a SUM of SUMs on a group using custom Code. The reason is that I have a table of data, grouped and returning SUMs of the data. I have a filter on the group to remove lines where group sums are zero. Everything works except I'm running into problems with the group totals - it should be summing the visible group totals but is instead summing the entire dataset. There's tons of articles about how to work around this, usually using custom code. I've made

Using Fields in Multiple Datasets in SSRS

邮差的信 提交于 2019-12-18 21:48:52
问题 I understand Crystal Reports has fallen out of favor with some in the development community and perhaps rightly so: I haven't used it in about 15 years. But when I did, I could make it sing. Perhaps that is why I find SSRS so disappointing. The software is clumsy, non-intuitive and one-dimensional. I have been fighting it for the last week and I am posting here as a last resort. I have been forced to create my report entirely in a SQL Server table and I shouldn't have to do that. For example:

Right pad a string with variable number of spaces

淺唱寂寞╮ 提交于 2019-12-18 13:59:12
问题 I have a customer table that I want to use to populate a parameter box in SSRS 2008. The cust_num is the value and the concatenation of the cust_name and cust_addr will be the label. The required fields from the table are: cust_num int PK cust_name char(50) not null cust_addr char(50) The SQL is: select cust_num, cust_name + isnull(cust_addr, '') address from customers Which gives me this in the parameter list: FIRST OUTPUT - ACTUAL 1 cust1 addr1 2 customer2 addr2 Which is what I expected but

How to use ReportViewer 2010 in MVC.NET 2

喜欢而已 提交于 2019-12-18 13:31:49
问题 Basically I want to know how to embed a report into MVC.Net 2. 回答1: I did the question, because there's not enough information on the web, or the information is not that complete so you can start working. The first thing you have to know is that the report viewer is a webcontrol so you can't use it on MVC, so first thing you have to do is create a web form so you can add the report viewer. In the example I've done I'm using Visual Studio 2010. The webform looks like this: <html xmlns="http:/

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

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

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