Reputation: 21
Since power BI request are not recording i was set up a profiler on the server and took the dax querys from the profiler and try to run it through the Jmeter. My questions are 1) Can wedo performance testing using jmeter in power BI projects? 2) Can we connect to the Analysis services to run the Dax querys?
And when i m trying to connect to the Analysis services i m getting below error massage.
Upvotes: 1
Views: 4575
Reputation: 168147
My expectation is that you're using wrong driver. Given IntegratedSecurity=true
I think you're trying to login with current Windows user, therefore:
sqljdbc42.jar
somewhere to JMeter Classpath sqljdbc_auth.dll
file from auth
folder of the JDBC Server installation to JMeter's "bin" folder (or somewhere under Java Library Path)Assuming everything goes well you should now be able to connect. Just in case check out The Real Secret to Building a Database Test Plan With JMeter article to learn more about databases load testing.
Upvotes: 1