Hello ,
I need to learn about calculating database load of a project . Lets assume that the events below are firing when an insert is completed.
- Insert a new record to table1
- Get the uniqueid from inserted and insert the uniqueid to another table , with some other parameters
- table1 is a cumulative dataware , so
select count(1) from table1 where anotherColumn = xxyyx
command is fired - After count result received , update another table with this count
I need to calculate how many transactions are opened and what is the cpu load of database when 100 or 1000 times this scenario is fired at the same time.
Thanks...