English 中文(简体)
IN SSRS, 有办法可拆解造rdl.data文档
原标题:IN SSRS, is there a way to disable the rdl.data file creation

在SSRS,我注意到,数据藏匿档案存放在我的杰夫机器上。 这些档案是否还存放在《报告》服务器上? 如果是,是否有办法避免在服务器上建立这些档案?

最佳回答

rdl. 数据文档是在服务器上创建的,纯粹是为了在开发过程中加快报告执行时间,而当时你在分散布局的同时,一再以同样的参数管理报告。

作为另一个方面,我认为可以说,有可能把SSRS服务混为一谈,以便重新利用成果。

我不知道该服务所使用的打字机制的细节;它可能使用像rdl.data这样的档案机制,或者可能把结果储存在报告服务数据库中。

也许更了解SSRS的人可以确认该机制的细节。

问题回答

在发展过程中,你可以通过编辑设计师编织文件来翻开(并删除*.rdl.data文档)。

对于2008年服务器SSRS,违约地点是:

C:Program files (x86)Microsoftosphere 9,0Common7IDEPrivateAssembliesRS ReportDesigner.

更改CacheDataForPreview至“false”

Source Link http://blog.summitcloud.com/2010/05/disable-reporting-services-data-cache-in-development/

PowerShell to the Relief, Justidden it - Add a Power 5. 壳牌计划解决你的报告,并把它作为建设组合的启动项目:

$path = "../*.rdl.data"

$rdlDataFiles = Get-ChildItem -Recurse -Force -Path "$path";

Write-Output "$path"

$rdlDataFiles | ForEach-Object {
  Write-Output "Hiding *.rdl.data file $_"

  $_.Attributes = $_.Attributes -bor (([System.IO.FileAttributes]::Hidden))

  # Next line isn t required per say, but just a guard.
  $_.Attributes = $_.Attributes -bor (-bnot([System.IO.FileAttributes]::ReadOnly))
}




相关问题
An error has Occurred During Report proccesing

When I m running the report I m getting that message above. The Report Works fine when I press the "Run Report" Button but I want also to avoid that annoying message that appears when the page loads. ...

Reporting services only displaying the last row

I have built a report pretty basic just a table wiht 45 rows of data. Problem is its only showing one row of data and its the last row. It displays just fine in the dataset and proc. any ...

Show Parameters for Reports In SSRS

I m developing an SSRS in Visual Studio BIDS. In it, I have a link that links to another report (report A). Report A has 4 parameters (dates). When I click on that link, it goes to report A fine, but ...

How to add group, or page field in an existing .rdl report

I have several .rdl reports designed for our client. However, they need new ones, that are relatively similar to the old ones. Differences are in the "group" and "page fields" (these can be changed ...

Report rendering using SSRS in Google Chrome

Hey, In our project, we use SSRS integrated with asp.net forms to render reports. The report looks good in IE. when it comes to google chrome, there re some issues we face such as date picker not ...

热门标签