reporting-services

How can I get SSRS and Chrome to work together?

大城市里の小女人 提交于 2019-12-12 08:47:26
问题 Chrome is my preferred browser; I need to interact with SQL Server Reporting Services, though, and when I navigate to a report created with Report Builder (*.rdl file), in Chrome I get no contextual menu. When hovering over the report, it does "light up" (a yellow border is drawn around it) and a dropdown arrow appears in the NE corner, but clicking it does nothing whatsoever. In IE, it works just fine. However, I really don't want to use IE if I don't have to. Sharepoint has similar issues

SSRS Expression for IF, THEN ELSE

落爺英雄遲暮 提交于 2019-12-12 08:21:44
问题 I am creating a field from tables with our shoretel phone system and i am intergrating reports via SSRS and i need some assisstance with an expression. =if(Fields!ExitReason.Value 7, then if (Fields!ExitReason.Value 1, else if (Fields!ExitReason.Value 0,))) Definition results should be: =if(Fields!ExitReason.Value) = 7 then 1 else 0 I am try to get the field to give me 7, 1 else 0. Any assistance would be great. Thanks, Arron 回答1: You should be able to use IIF(Fields!ExitReason.Value = 7, 1,

How Do I Resolve Report Deployment Error When Referencing System.Core (4.0) under SSRS 2008R2

▼魔方 西西 提交于 2019-12-12 08:02:15
问题 Preface: Development Environment: Visual Studio 2010 with BIDS + MSSQL 2012 on local box Production Environment: MSSQL 2008 R2 For Live Report Server I am having a problem with deploying a report when referencing System.Core in my report. The error is below. Error while loading code module: ‘System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’. Details: Could not load file or assembly 'System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'

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

Update datasouce in RDLC report

ぐ巨炮叔叔 提交于 2019-12-12 07:28:24
问题 I am using SQL views to pass data to RDLC report. Now If I add a column to SQL view, How can I get this newly added column in RDLC report. For now, I have to delete RDLC dataset and create new one every time which is not feasible at all. Hope someone have better way of doing this. 回答1: You can open your report in any XML editor, locate your dataset and add more columns (of desired type) in Fields section. For example: <Field Name="NewColumnName"> <DataField>NewColumnName</DataField> <rd

RDL client-side (local) reporting on .NET 4.0?

有些话、适合烂在心里 提交于 2019-12-12 07:23:23
问题 I just stumbled across the VS2010 "upgrade or die" confrontation for the RDL report designer. Before I destroy a perfectly good monitor, I decided to take a deep breath and calmly ask if anyone can give me the real scoop on what is going on with RDL client-side reporting. I've seen it said that it can't be done with RDL 2008. Is this true, and if so, is it a deliberate attempt on the part of Microsoft to put its so-called partners in the ground, or is there a less sinister explanation? 回答1:

Convert Crystal Reports formula to SSRS expression

懵懂的女人 提交于 2019-12-12 07:04:35
问题 IF {Field_A} = 0 THEN 0 ELSE (({Field_B} / {Field_A})*100) I am trying to convert this formula to an SSRS expression. I have tried many different =IFF statements, but cannot seem to get it to run correctly. 回答1: Almost a duplicate question: if you search here for #error ssrs iif you'll get plenty of results, such as Does the iif function compute both paths in SSRS or is it short-circuited? Rewriting you statement is straightforward then: =IIF( Fields!Field_A.Value = 0, 0, Fields!Field_B.Value

how to add two different values on gantt(range bar) chart in SSRS

折月煮酒 提交于 2019-12-12 06:58:07
问题 I would like to report like this: I want to show orders for every line and order has setup(yellow) and productıon(green) phase. Setup and Phase widths depends on actual_start_time and actual_end_time. My query result is like this: I tried to create report stacked bar, you can see this link: How to design bar chart on SSRS but if I create like this my report running very slowly. that's why I try to create report use range (Gantt) chart. report design: and report preview: I want to show

SSRS must Excel be installed on Reporting server to use Excel as a Data SOURCE?

假装没事ソ 提交于 2019-12-12 06:24:26
问题 If users would like to use Excel as a data source for Report Builder (of SSRS - SQL Server Reporting Services), does Excel need to be installed on the Report Server? We also have issues with 32-bit ODBC drivers vs 64 bit drivers but I want to rule out (or rule in) that Excel needs to be on the Server. Thanks! 回答1: No, you don't have to install Excel. The MS Business Intelligence Development Studio (ie. Visual Studio) is 32-bit and you need 32-bit ODBC drivers for report development. I'll

Will Visual Studio 2008 Reporting Services work with SQL Server 2014?

百般思念 提交于 2019-12-12 06:20:48
问题 Will Visual Studio 2008 Reporting Services work with SQL Server 2014? If not, should the report solutions be upgraded to the latest version of Visual Studio? Which versions of Visual Studio Reporting Services work with SQL Server 2014? 回答1: The relationship between Visual Studio and SQL Server can be a bit confusing. Reporting Services (the report server platform) is a component of SQL Server . Reporting Services reports can be designed using Microsoft's development environment tool Visual