bids

SSRS report files (.rdl) how to upgrade to latest?

非 Y 不嫁゛ 提交于 2019-11-30 11:35:32
I have been using Visual Studio 2010 for Reporting Services projects, with a SQL server 2012 reporting services back-end. To display the report we went from version 10,to 11 with the Reporting viewer in asp.net like so with no problems. <%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=13.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %> <rsweb:ReportViewer ID="ReportViewer03" runat="server" Font-Names="Verdana" Font-Size="8pt" Height="400px" ProcessingMode="Remote" Width="950px"> <ServerReport ReportPath="

SSRS report files (.rdl) how to upgrade to latest?

不打扰是莪最后的温柔 提交于 2019-11-29 17:12:21
问题 I have been using Visual Studio 2010 for Reporting Services projects, with a SQL server 2012 reporting services back-end. To display the report we went from version 10,to 11 with the Reporting viewer in asp.net like so with no problems. <%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=13.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %> <rsweb:ReportViewer ID="ReportViewer03" runat="server" Font-Names="Verdana

Handling non existent values in sql query expression for ssrs chart

假装没事ソ 提交于 2019-11-29 13:05:55
I am using the following query in an ssrs line chart. It counts how many orders are recorded each month based on each order date. My problem is that when a month has no orders, rather than saying zero or null it removes the row for that month all together. I would prefer for it to count it as zero but null would be ok too. Basically, I want to always have twelve rows whether they contain information or not. How can I fix this? Is there an expression I can use or something? Or am I missing something completely obvious? SELECT MONTH(Ord.OrdDate) AS 'MONTH', COUNT(CASE WHEN @Worker_ID1 IS NULL OR

SSIS: Just started getting a “Key not valid for use in specified state.” error on my scheduled SSIS package

我怕爱的太早我们不能终老 提交于 2019-11-29 04:12:59
I have 2 scheduled jobs on my SQL Server 2005 machine that are scheduled to run each morning (around 2:00 AM). These jobs have worked fine (mostly) for years and although I've had a few hiccups that I've had to work through this problem is completely stumping me. Two mornings ago, one of my packages started reporting the following error: Executed as user: [Service Acount]. ...n 9.00.4035.00 for 32-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 1:15:01 AM Error: 2012-10-17 01:15:03.98 Code: 0xC0016016 Source: Description: Failed to decrypt protected XML node "DTS

How do I display 'No data available.' when there are no rows to show on the report?

杀马特。学长 韩版系。学妹 提交于 2019-11-28 09:03:33
I am building an SSRS 2005 report using BIDS. My report filters on date. When the selected date returns no data rows the report is blank, just the title is displayed, no table or column heading. How can I change this to display a message like No data available. or Report is empty. ? You could set the property NoRowsMessage available on the report's table control like this: Select the Tablix control and press F4 to view the Properties pane. Find the NoRowsMessage property and set the value to whatever message you'd like. You can also to format the message using the Font and TextAlign properties

Positioning tables and charts in BIDS SSRS

偶尔善良 提交于 2019-11-28 06:25:21
See (image.1) - As you can see, in the design view I have my two tables on the left and two pie charts on the right, all neatly positioned. See (image.2) - Now I preview the report, and as you can see, I am not allowed the second pie chart along side the tables, it has to go below them (but on the right) why is this? There is quite CLEARLY sufficient space available for the second pie chart. Any answer or workaround to this would be appreciated. SSRS makes its best guess at aligning objects in reports, but sometimes, especially when one element is fixed size and the other is variable, this

SSRS - Expression using different dataset fields

送分小仙女□ 提交于 2019-11-28 03:20:34
问题 I have a report with multiple data-sets. Different fields from different data-sets are used in different locations of the report. In one part of the report, I need to do a calculation using fields from two different data-sets. Is this possible within an expression? Can I somehow reference the data-set the field is in, in the expression? For example, I'd like to do something like this: =Fields.Dataset1.Field / Fields.Dataset2.Field 回答1: You can achieve that by specifying the scope of you

How to create a report with sections and page breaks using SSRS

巧了我就是萌 提交于 2019-11-27 22:29:15
I'm trying to create a report that looks like this: using a select from this table: (fiddler here for query and data ) CREATE TABLE StudentData ( id int PRIMARY KEY IDENTITY, name varchar(30), subject varchar(30), currentGrade varchar(2), targetGrade varchar(2), note1 varchar(100), note2 varchar(100), note3 varchar(100), UNIQUE (id) ) Basically I want to display each student on a new page, with their subject split up into sections, and their grades and notes in each of these subject sections. I am trying to do this within Business Intelligence Development Studio Any help with how I would go

Installation of SQL Server Business Intelligence Development Studio

梦想与她 提交于 2019-11-27 22:08:51
I have installed Microsoft SQL Server 2005. This consists of the configuration tools (SQL server configuration manager, SQL Error and usage Reporting, SQL Server Surface area configuration, Reporting Services configuration) and SQL Server Management Studio. However, I don't find SQL Server Business Intelligence Development Studio. How can it be installed? Is it available online as a freeware download? It sounds like you have installed SQL Server 2005 Express Edition, which does not include SSIS or the Business Intelligence Development Studio. BIDS is only provided with the (not free) Standard,

SSIS: Just started getting a “Key not valid for use in specified state.” error on my scheduled SSIS package

↘锁芯ラ 提交于 2019-11-27 18:09:06
问题 I have 2 scheduled jobs on my SQL Server 2005 machine that are scheduled to run each morning (around 2:00 AM). These jobs have worked fine (mostly) for years and although I've had a few hiccups that I've had to work through this problem is completely stumping me. Two mornings ago, one of my packages started reporting the following error: Executed as user: [Service Acount]. ...n 9.00.4035.00 for 32-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 1:15:01 AM Error: 2012