SSRS 中的动态数据源
Dynamic datasource in SSRS
我正在编写一份报告,该报告将从每台服务器中提取所有系统管理员登录信息。所以我使用了以下数据源属性并创建了参数名称:
servername ="data source=" & Parameters!Servername.Value & ";initial catalog= master"
以上解决方案在 SQL 服务器数据工具中运行良好,但是当我在报表服务器中部署时,出现连接错误,如下所示。
An error has occurred during report processing. (rsProcessingAborted)
Cannot create a connection to data source 'dSource_DbOwner'.
(rsErrorOpeningConnection) Format of the initialization string does
not conform to specification starting at index 0.
请让我知道您的所有意见
谢谢,文
SSRS 有时对纯文本很烦人。我建议进入连接管理器并使用向导。我相信这是一个按钮,它位于您输入此文本的右上角。这将轻松创建连接,并且不会在连接字符串上吐痰和溅射。
我正在编写一份报告,该报告将从每台服务器中提取所有系统管理员登录信息。所以我使用了以下数据源属性并创建了参数名称:
servername ="data source=" & Parameters!Servername.Value & ";initial catalog= master"
以上解决方案在 SQL 服务器数据工具中运行良好,但是当我在报表服务器中部署时,出现连接错误,如下所示。
An error has occurred during report processing. (rsProcessingAborted) Cannot create a connection to data source 'dSource_DbOwner'. (rsErrorOpeningConnection) Format of the initialization string does not conform to specification starting at index 0.
请让我知道您的所有意见
谢谢,文
SSRS 有时对纯文本很烦人。我建议进入连接管理器并使用向导。我相信这是一个按钮,它位于您输入此文本的右上角。这将轻松创建连接,并且不会在连接字符串上吐痰和溅射。