reporting-services

Using a Word document as a template for an SSRS report?

ぐ巨炮叔叔 提交于 2019-12-11 07:57:02
问题 Greetings. I've got a few Word documents that I need to send as notifications when something happens. I've got to fill 10 parameters or so from our SQL Server database. Note that I don't need to send them as word documents, PDF will be fine - I was just given them in .docx form. Now, I immediately thought SSRS was the way to go here. Now that I've spent some time with the Textbox control and it's lack of formatting (SQL2005), I'm not so sure. Anyone have an idea for a better way to go about

Reporting Services - Using a web service via a custom assembly: Finding the endpoint

蓝咒 提交于 2019-12-11 07:54:15
问题 I'm having a problem when using a Custom Assembly in my reports. We are using a Microsoft SQL Server 2012 Express Edition with Reporting Services and are designing our reports in Microsoft Visual Studio 2010 Scenario: In Reporting Services we want to base the language of a report based on a parameter. All the strings are translated with the help of a web service that has a simple "Translate" method. Because we cannot reference to a web service in the report, we used a custom assembly that

SQL Server 2005 Reporting Services: Reports are Compressed

一笑奈何 提交于 2019-12-11 07:41:59
问题 I have a report that I am capable of viewing correctly in Internet Explorer (IE) with the help of Reports from SQL Server 2005 Report Server (SSRS). The problem is that the report is compressed to about 100px by 100px in Firefox and probably other browsers such as Safari and Chrome. Also, I am using IIS6. How can a report be rendered properly in browsers other than IE with SSRS? 回答1: This is not a firefox issue it is a MS issue with how they developed reporting services (the web based portal

SSRS Keep page header on top of page when scrolling

梦想的初衷 提交于 2019-12-11 07:29:30
问题 Alright, I know how to keep the Row Headers fixed when scrolling. I want to know how to keep PAGE header fixed when scrolling. The Tablix has no header. The page header will act as the Tablix header. I have tried the Tablix header and it would not work when the report is exported to Excel. I read that the Page header WILL work. I am going to recreate my Tablix header as my Page header and align it just right so it looks like its a Tablix header. When I create a new report and paste my query,

Reporting Services E-Mail Subscription Is Always in Pending Status

自闭症网瘾萝莉.ら 提交于 2019-12-11 07:00:03
问题 We have many e-mail subscriptions on your report server; but e-mail subscription status's are always "Pending" more than 4 days. Newly configured subscriptions are pending also. Status is not changing and there is no exception or error or warning on report server logs. Is there anybody with any ideas? How can I trace subscription logs with more details? P.S. E-mails send with relay on our exchange server and our system team said that they couldn't trace e-mails with sending relay. Thanks in

colour mismatch in ssrs report and excel sheet

老子叫甜甜 提交于 2019-12-11 06:57:06
问题 I have a ssrs report where i have used some colour formatting.The problem is that it is showing fine in the preview tab but when i am exporting it into excel sheet the colour is getting changed.Please help me. 回答1: SSRS + Excel Colors are a strange combination, you will probably have hard times having the same output in Excel as in SSRS. See this post: http://www.sqldev.org/sql-server-reporting-services/excel-export-copy-to-another-excel-discoloration-issue-for-ssrs-2008-23790.shtml 来源: https

Multiple SELECT CASE statements in Query For Shoretel Reports

。_饼干妹妹 提交于 2019-12-11 06:46:08
问题 I am trying to do a query that allow for multiple columns in a view. Any assistance would be helpful. SELECT queuecall1.StartTime, queuecall1.QueueName CASE WHEN ExitReason = 7 THEN 1 ELSE 0 END AS CallsAbandoned WHEN ExitReason = 1 THEN 1 ELSE 0 END AS CallsAgent WHEN calltype = 1 THEN 1 ELSE 0 END) AS CallsInternal WHEN calltype = 2 THEN 1 ELSE 0 END) AS CallsExternal FROM (queuecall queuecall1 INNER JOIN connect connect1 ON queuecall1.ConnectTableID=connect1.ID) INNER JOIN call call1 ON

How to solve Anonymous Logon is not configured

ε祈祈猫儿з 提交于 2019-12-11 06:30:07
问题 Can you guys check my codes? I am getting following error when I try to run my program. What is giving that error, where I did wrong and how can I fix it? I am also having problem connecting to server database( report server invalid url). I am guessing my C# code is giving that issue since I could find no much error in SQL side. I am following these articles:http://bharathonsqlserver.blogspot.sg/2012/09/forms-authentication-in-ssrs-2012.html and https://blogs.msdn.microsoft.com/chaitanya

SSRS Multilookup Function for Names with Comma Separation

孤者浪人 提交于 2019-12-11 06:30:00
问题 I would like to put the following in a multilookup drop-down in reporting services : "Smith, John", "Jones, Tim", "Kelly, Andy" The comma separating the first and last name prevents the multilookup from working correctly. I am also unable to use ticks (' or ") in reporting service to keep the separating comma from working like a multilookup comma that separates the fields I want to select from. Is there a way to keep the comma in the names while still allowing multilookup? Any help would be

Report Services: Controlling page breaks inside a table

情到浓时终转凉″ 提交于 2019-12-11 06:28:42
问题 I'm using a table on my report to present the data. Since it was a lot of data and I wanted to print the report on a A4 page, I split each row into 3 different rows. My problem is when the report goes to the second page, I want it to break before or after the 3 rows. example: name age address contact name age address contact name age address * page break * contact this is what normally happens. I want to ensure that the page break only happens on the lines. 回答1: There are multiple strategies