reporting-services

Setting up SSRS server with alternative to anonymous authentication

本小妞迷上赌 提交于 2021-02-08 11:41:11
问题 I am trying to set up a VM with SSRS report server. The SSRS reports on the report server has to be accessible from an iframe on another web site / server. When I'm accessing the report server URL on an external computer browser I have to enter credentials for the VM user. On the following link it says that anonymous authentication is unsupported: https://technet.microsoft.com/en-us/library/cc281310(v=sql.105).aspx The only solution I have at the moment is to enter the credentials in the URL

How to display an image from a SQL query that gives a file path in SSRS Report?

房东的猫 提交于 2021-02-08 10:25:04
问题 I am working on a report, which I would like to display an image in my database from a query with a parameter. For example: SELECT pictureATTACHMENT FROM myDatabase.dbo.ATTACHMENT WHERE DESCRIPTION LIKE @thisCampaign + '%' My query returns a file path to the image: For example: \\DASERVER\FOLDER\FOLDER\Data\Attachment\filename.png How do I need to format the expression for the report to display the image? I have tried doing: =file:\\DASERVER\FOLDER\FOLDER\Data\Attachment\filename.png But no

Is there any update of SSRS PHP SDK for SQL Server 2016?

你说的曾经没有我的故事 提交于 2021-02-08 03:38:56
问题 I would like to connect my PHP application with SSRS. I followed the steps found from Microsoft here https://blogs.msdn.microsoft.com/brian_swan/2010/05/04/getting-started-with-sql-server-reporting-services-ssrs-and-php/ . I downloaded the SDK from this page https://archive.codeplex.com/?p=ssrsphp but the file does not have any instructions how to install it. It seems like this SDK as as open project is not supported any more (first released on 2010). Could anyone demonstrate a basic example

Is there any update of SSRS PHP SDK for SQL Server 2016?

别说谁变了你拦得住时间么 提交于 2021-02-08 03:36:29
问题 I would like to connect my PHP application with SSRS. I followed the steps found from Microsoft here https://blogs.msdn.microsoft.com/brian_swan/2010/05/04/getting-started-with-sql-server-reporting-services-ssrs-and-php/ . I downloaded the SDK from this page https://archive.codeplex.com/?p=ssrsphp but the file does not have any instructions how to install it. It seems like this SDK as as open project is not supported any more (first released on 2010). Could anyone demonstrate a basic example

Is there any update of SSRS PHP SDK for SQL Server 2016?

时光怂恿深爱的人放手 提交于 2021-02-08 03:36:15
问题 I would like to connect my PHP application with SSRS. I followed the steps found from Microsoft here https://blogs.msdn.microsoft.com/brian_swan/2010/05/04/getting-started-with-sql-server-reporting-services-ssrs-and-php/ . I downloaded the SDK from this page https://archive.codeplex.com/?p=ssrsphp but the file does not have any instructions how to install it. It seems like this SDK as as open project is not supported any more (first released on 2010). Could anyone demonstrate a basic example

SSRS reference report variable from report function

旧城冷巷雨未停 提交于 2021-02-07 23:00:41
问题 In SSRS, is it possible to reference a report variable from a report function? Below is my report function. Instead of declaring and setting the MaxRFWIDRange in the function, I'd rather reference a report variable with the same name. Function ValidateRFWIDRange(FromRFW As Integer, ToRFW As Integer) As Boolean Dim DiffRFW As Integer Dim MaxRFWIDRange As Integer MaxRFWIDRange = 10000 DiffRFW = ToRFW - FromRFW If DiffRFW > MaxRFWIDRange Then Return False Else Return True End if End Function 回答1

How to set SSRS ConsumeContainerWhitespace property in Visual Studio 2008?

╄→尐↘猪︶ㄣ 提交于 2021-02-07 11:28:33
问题 I am trying to set ConsumeContainerWhitespace using the Report Designer in Visual Studio 2008, but I can't find the property in the GUI. Since I can't find it, I'm wondering if this is new to VS 2010. Is it possible to set this property in VS 2008? If so, how is it done? 回答1: You can set this property using the VS2008 GUI. Just click on the report surface and hit F4 to bring up the properties window, and then select "Report" in the object selector at the top of the window. You should then see

SSRS - Importing data from a CSV file to use as a data source on a report server

隐身守侯 提交于 2021-02-07 08:52:46
问题 I am hoping that someone could help me with my problem. I am able to make a local connection to a csv file and import it and use the data within the report. One problem is when I put the report onto a report server. It can't access the file on the local machine. Would anyone know of a way, possibly using ODBC, to allow the report on the server to view the CSV file on the local machine? 回答1: You can use an ODBC connection to connect to a CSV file. You just need to point the ODBC connection at

SSRS - Importing data from a CSV file to use as a data source on a report server

限于喜欢 提交于 2021-02-07 08:50:36
问题 I am hoping that someone could help me with my problem. I am able to make a local connection to a csv file and import it and use the data within the report. One problem is when I put the report onto a report server. It can't access the file on the local machine. Would anyone know of a way, possibly using ODBC, to allow the report on the server to view the CSV file on the local machine? 回答1: You can use an ODBC connection to connect to a CSV file. You just need to point the ODBC connection at

Generating report from rdlc xml string

给你一囗甜甜゛ 提交于 2021-02-07 08:19:32
问题 I'm facing an issue when generating reports. I should generate report dynamically using all data from database for it (source name and rdlc report that stores as xml string) So I solved problem next way: Create local rdlc file with report xml string; Set path to the file; var rViewer = new ReportViewer(); rViewer.LocalReport.ReportPath = @"Path to the generated xml rdlc file"; var dataSource = new ReportDataSource("DataSourceName", data); rViewer.LocalReport.DataSources.Add(dataSource); Could