Concurrency testing with SQL server migration

adhoustonj

Member
Local time
Yesterday, 23:10
Joined
Sep 23, 2022
Messages
195
Hello AWF,
Can anyone share a preferred method of concurrency testing? I've migrated Access BE's to sql server and made modifications, optimizations, configured data types, set up views in sql server, etc, and the speed/performance seems great so far. I now need to test multiple users using the db, and wasn't sure if I need to set up a test team, or if there are stress tests/evaluations that can be run before user testing.
 
Generally speaking, a lot of the concurrency issues are dealt with pretty automatically with SQL server, it's much more elegant in its handling of record locks. There are options you can use (With (NoLock)) for views etc. that are read-only that can help.

There are some good tools out there - I haven't used them for a while as most of our SQL work is Azure hosted, but give this one a go
 

Users who are viewing this thread

Back
Top Bottom