Forum Discussion
Re-publishing Report does not update Application Intent
- 5 years ago
Hi mcho ,
You can use the following sql query to determine if the multi-subtnet failover works.
SELECT DATABASEPROPERTYEX(DB_NAME(), ‘Updateability’) AS Access; SELECT req.session_id, req.status, req.command, req.cpu_time, req.total_elapsed_time, s.host_name, s.program_name, s.login_name FROM sys.dm_exec_requests req INNER JOIN sys.dm_exec_sessions s ON req.session_id = s.session_id WHERE s.program_name = ‘Mashup Engine’;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
So I do not believe that is a reliable way of determining if Application Intent is being applied or not. As you have already noticed for PBIX files the "Connection String" is not stored in a traditional way in Report Server. It's only really the server and database that are reflected there.
My guess would be that the design time settings are possibly still being applied and you should probably check with your DBAs first. They should be able to run a trace or check a DMV while a refresh is running to determine if this is working or not.