Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/sql/86.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Sql 如何调试具有以下错误的报表?详见_Sql_Sql Server_Visual Studio_Sql Server 2008_Reporting Services - Fatal编程技术网

Sql 如何调试具有以下错误的报表?详见

Sql 如何调试具有以下错误的报表?详见,sql,sql-server,visual-studio,sql-server-2008,reporting-services,Sql,Sql Server,Visual Studio,Sql Server 2008,Reporting Services,尝试运行报告时,我按此顺序收到以下错误消息: 指定的TargetServerURL无效。在部署设置中为报表服务器指定有效的URL 无法调试项目,因为未指定起始报告。 在“项目”菜单中,选择“属性”,然后输入StartItem的值 生成的输出如下所示: ------ Build started: Project: Accounts Billed Per User, Configuration: Debug ------ Skipping 'LVP.rds'. Item is up to date.

尝试运行报告时,我按此顺序收到以下错误消息:

  • 指定的TargetServerURL无效。在部署设置中为报表服务器指定有效的URL
  • 无法调试项目,因为未指定起始报告。 在“项目”菜单中,选择“属性”,然后输入StartItem的值
  • 生成的输出如下所示:

    ------ Build started: Project: Accounts Billed Per User, Configuration: Debug ------
    Skipping 'LVP.rds'. Item is up to date.
    Skipping 'Accounts Billed Per User.rdl'. Item is up to date.
    Skipping 'Energy Customers With CSP Liscenses.rsd'. Item is up to date.
    Skipping 'Customers.rsd'. Item is up to date.
    Build complete -- 0 errors, 0 warnings
    ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ==========
    ========== Deploy: 0 succeeded, 1 failed, 0 skipped ==========
    
    我的项目的屏幕截图如下所示:

    有关本期的最新进展,请参见下面的评论部分


    谢谢你检查我的问题。

    Tab Alleman和CuriousKid带领我解决了我的问题。非常感谢你的帮助

  • 右键单击解决方案
  • 转到配置管理器…
  • 未选中为项目部署
  • 右键单击项目
  • 转到属性
  • 调试部分的StartItem提供了报告

  • 现在,当我调试解决方案时,报告会立即运行。

    您的部署设置是什么样子的?我不知道这是否存在,因为我以前从未从Visual Studio部署过报告。但是,我查看了一下,发现报告已配置为部署。我取消选中此框,现在报告仅配置为生成。不幸的是,现在我有一个不同的错误消息:无法调试项目,因为没有指定起始报告。在“项目”菜单中,选择“属性”并输入StartItem的值。我可以运行报告,但不能运行项目。只需右键单击项目并选择“属性”。在“调试”部分的“常规属性”中,为开始项提供报告名称。谢谢@CuriousKid!