如何确定报告服务器上的 SQL Server 版本
我们所有的报告服务生产实例都分为 Web 服务器组件和报告数据库组件。
我知道您可以通过以下 TSQL 检测数据库服务器上的 SQL Server 实例:
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'),
SERVERPROPERTY ('edition')
但是,在我们的示例中,报告服务器没有安装数据库服务器组件。 那么在这种情况下如何检测安装了什么服务包呢?
All of our production instances of reporting services are split into the web server components and the reports database components.
I know that you can detect the instance of SQL Server on a database server by the following TSQL:
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'),
SERVERPROPERTY ('edition')
However, in our case, the reporting servers do not have a database server components installed. So how do I detect what service pack is installed in this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
手动或使用网络抓取,浏览至
版本号位于页面底部。
或者以编程方式:
Manually, or using web scraping, browse to
and the version number is at the bottom of the page.
Or programatically:
在您的浏览器中,转到“
只需查看页面底部”
In your browser go to
Just look at the bottom of the page
Reporting Services 配置工具详细介绍了正在运行的 SQL Server 版本。
The Reporting Services Configuration Tool details the SQL Server version running.
在 2017 年的现代版本中,“帮助 | 关于”效果很好。
In the modern 2017 version, "Help | About" works great.