简体   繁体   English

SQL Server 2014 Reporting Services的部署问题

[英]Deploying issue with SQL Server 2014 Reporting Services

I'm trying to deploy a report with SQL Server 2014, through Visual Studio 2013. The report is building well, it is deploying well, I can see it on my web page but when I click on it, I have the following error 我正在尝试通过Visual Studio 2013使用SQL Server 2014部署报表。该报表构建良好,部署良好,我可以在网页上看到该报表,但是单击该报表时出现以下错误

Impossible de terminer l'action en cours. 不可能确定的动作。 Les informations d'identification de la source de données de l'utilisateur ne répondent pas à la configuration requise pour exécuter ce rapport ou dataset partagé. 配置信息的原始信息,请根据执行机构的要求分配给部分数据集。 Elles ne sont pas stockées dans la base de données du serveur de rapports ou la source de données de l'utilisateur est configurée pour ne pas exiger d'informations d'identification, mais le compte d'exécution sans assistance n'est pas spécifié. 资料来源,身份证明书的主要来源,以及无处不在的执行机构的协助。 ( rsInvalidDataSourceCredentialSetting ) rsInvalidDataSourceCredentialSetting

It means the user data identification does not match or answer, the required config to run this report. 这意味着用户数据标识不匹配或无法回答运行此报告所需的配置。

I've configured my datasource with an odbc and I've put the following string within the datasource: 我已经使用odbc配置了数据源,并将以下字符串放入了数据源中:

Dsn=SQLPOITTOWN;uid=sa;persist security info=False

For my credentials, I've put "Use this username and password" with the username sa . 对于我的凭据,我在用户名sa添加了“使用此用户名和密码”。 I let the password field empty as there is no password. 我让密码字段为空,因为没有密码。

What am I doing wrong? 我究竟做错了什么?

Thanks 谢谢

To spare you all the comments , the solution is to create a user in the db with a password (see below). 为了给您提供所有注释,解决方案是在数据库中使用密码创建用户(请参见下文)。

Dsn=SQLPOITTOWN;uid=POITTOWNReport;Pwd=Xb521Aabc;persist security info=False

The report is appearing correctly. 该报告显示正确。

Thanks @TT. 谢谢@TT。 for his valuable help 为了他的宝贵帮助

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM