SQL Server 2008 R2 中 .rdl 文件的 SRC 文件夹在哪里
这看起来应该很容易,但我一直没能找到它。
我有 rdl 文件需要添加到报告服务中。我不想通过网络界面一次加载一个报告。我想将我的文件放入源文件夹中,但我似乎找不到它。我正在运行 R2,但未安装 IIS。
This seems like this should be easy but I have not been able to find it.
I have rdl files that I need to add to report services. I don't want to go through the web interface and load reports one at a time. I would like to just drop my files into the source folder but I can't seem to find it. I am running R2 without IIS installed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有源文件夹,要在 SSRS 中发布报告,您必须上传它,这意味着它将存储在 Sql Server 数据库中(默认情况下称为 ReportServer,我认为它们最终会出现在名为 Catalog 的表中,但是上次我看到微软没有正式记录)。
好消息是,您不必通过 Web 界面一一上传 rdl 文件。您可以从报表设计器或报表生成器一次性发布它们,也可以编写自己的部署工具。
There is not a source folder, to publish a report in SSRS you have to upload it, which in turn means it will be stored in a Sql Server database (by default called ReportServer, I think they end up in a table called Catalog, but last time I saw that was not officially documented by Microsoft).
The good news is that you don't necessarily have to upload the rdl files through the web interface one by one. You may publish them in one single go from the Report Designer or the Report Builder, or you may write your own deployment tool.