Reputation: 2113
We're migrating SQL2005 Enterprise to SQL2012 Enterprise (on a new server too, from WIn2003 to Win2012).
Is there a way to test multiple connections to the database to prove it can take the same load as the previous server?
The application is a website, .Net3.5 with Min and Max pool size set in the connection string.
Upvotes: 0
Views: 796
Reputation: 168207
You can do it via Apache JMeter and next few steps:
Add JDBC Connection Configuration and provide JDBC url, driver class name and credentials
jdbc:jtds:<server_type>://<server>[:<port>][/<database>][;<property>=<value>[;...]]
net.sourceforge.jtds.jdbc.Driver
See The Real Secret to Building a Database Test Plan With JMeter guide for more detailed explanation of database load testing domain.
Upvotes: 1