In old SSRS 2008 R2 we used purge data by deleting the rdl data file.
SSRS doesn’t offer by default data purging feature but you can try this cool feature
If you are working with SSRS reports and you want to purge the report data( which is cached in .data files) and preview the report then follow the below instructions
Instructions
- Go to Tools > External Tools...
- Add a new tool with the following settings:
- Title: Clear Report Data Cache
- Command: "%WinDir%\System32\cmd.exe"
- Arguments: /C DEL /S /Q "$(SolutionDir)\*.rdl.data"
- Check options: Use Output window & Close on exit
Now whenever you want to delete your report data cache, just go to Tools > Clear Report Data Cache.
Now whenever you want to delete your report data cache, just go to Tools > Clear Report Data Cache.
Is there any by default purge option or we need to configure this in VS 2013 ?