简体   繁体   English

安装SQL Server Reporting Services

[英]Installing SQL Server Reporting Services

I have two servers, a web server and a DB server. 我有两个服务器,一个Web服务器和一个DB服务器。 The web server is going to be running SQL Server reports soon, and I need to install SQL Server Reporting Services. Web服务器即将运行SQL Server报表,我需要安装SQL Server Reporting Services。 My question is: 我的问题是:

Does this get installed on the DB server, then the web server (.net code i guess?) talks to the SSRS server like a regular DB connect. 这是否安装在DB服务器上,然后Web服务器(我猜是.net代码?)像常规DB连接一样与SSRS服务器通信。

Or, does this get installed on the web server and gets its data from the DB. 或者,是否将其安装在Web服务器上并从数据库获取其数据。

Or, is part installed on the DB server, and part installed on the web server? 还是部分安装在数据库服务器上,部分安装在Web服务器上?

Thanks in advance. 提前致谢。

Reporting Services is installed on the database server, unless you want to buy another SQL license for the web server. 除非您要为Web服务器购买另一个SQL许可证,否则Reporting Services将安装在数据库服务器上。

Then, the application uses the report viewer control (not a regular database connection) to communicate with the database / report server and display the reports. 然后,应用程序使用报表查看器控件(不是常规的数据库连接)与数据库/报表服务器进行通信并显示报表。 The communication between the web server and the report server is done using HTTP. Web服务器和报表服务器之间的通信是使用HTTP完成的。

In summary, the report viewer control in the web application calls the SSRS web service on the database server. 总之,Web应用程序中的报表查看器控件在数据库服务器上调用SSRS Web服务。 SSRS then queries the data from the database and returns the report to the report viewer which renders it for display. 然后,SSRS从数据库中查询数据,并将报告返回给报告查看器,由报告查看器将其呈现出来以供显示。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 SQL Server Reporting Services不兼容 - SQL Server Reporting Services Incompatible HTTP 身份验证和 SQL Server Reporting Services - HTTP Authentication and SQL Server Reporting Services SQL Server Reporting Services Reporting Services树在mvc应用程序中使用iframe导航 - SQL Server Reporting Services Reporting Services Tree Navigation with out iframe in mvc application 从MS CRM工作流活动中调用SQL Server Reporting Services - Call SQL Server Reporting Services from MS CRM workflow activity 在SQL SERVER Reporting Services(SSRS)中显示rtf数据 - Showing rtf data in SQL SERVER Reporting Services (SSRS) 使用 C# 从 SQL Server Reporting Services 读取 - Read from SQL Server Reporting Services with C# 以编程方式控制SQL Server Reporting Services报表查看器 - Controlling the SQL Server Reporting Services Report Viewer programmatically 如何检查SQL Server Reporting Services的配置状态? - How to check SQL Server Reporting Services configuration status? SQL Server Reporting Services 无法设置数据源连接字符串 - SQL Server Reporting Services Cannot Set Data Source Connection String 有没有人使用Chrome浏览器测试过SQL Server 2012 Reporting Services? - Has anyone tested SQL Server 2012 Reporting Services with the Chrome browser?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM