November 4, 2024 at 10:16 pm
Hi, i considered power bi with embedded for this. Not a big fan of that plumbing.
a peer of mine showed me this today for an automatically refreshed ssrs report
https://www.mssqltips.com/sqlservertip/5916/sql-server-reporting-services-ssrs-auto-refresh-report/
is there a downside to this approach for automatically refreshing dashboards on dedicated screens? i can see lost connections could be one where the user might have to intervene now and then. and maybe the ssrs banner info could be a limitation in space available for visuals. Originally i was thinking asp and javascript to automatically refresh certain kpi's etc whose background info i refresh with a near real time ssis pkg that wakes up every so often.
. Is
November 5, 2024 at 12:49 am
Since the author of that article hasn't answered the latest question there in over 4 years, why not just try it and see? Then, you can answer poor Jose's question and let us know, as well. I'd answer this but I don't use SSRS at all.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 5, 2024 at 1:10 am
The only “downside” is that the entire report and the underlying queries get executed with every refresh.
There are two things I’d change.
1) Use a permanent table, not a temp table. Note: You can create semipermanent tables in tempdb, that will last until they are explicitly dropped or the sql service restarts.
2) Use stored procedures, not ad-hoc sql in ssrs.
November 5, 2024 at 7:30 pm
thx jason and jeff. I should have mentioned also that someone in this forum suggested power point waking up a pbi dashboard every so often.
i'm reluctant on pbi and ssrs auto refresh for the following reasons...
On the other hand i hate writing code. But have no choice. Hoping some day MS with put an auto refresh capability into pbi with some sort of elegant error handling. I think they already allow streaming datasets.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply