Hi,
I'm a bit confused about a the execution time of transactions in a transaction.
I just wrote a transaction which calls four other transactions (just for time testing) and I get the following result:
[INFO ]: Execution Started At: 09:11:37 [INFO ]: Execution Started At: 09:11:37 [INFO ]: Execution Completed At: 09:11:37 Elapsed Time was 453 mS [INFO ]: Execution Started At: 09:11:38 [INFO ]: Execution Completed At: 09:11:38 Elapsed Time was 31 mS [INFO ]: Execution Started At: 09:11:38 [INFO ]: Execution Completed At: 09:11:38 Elapsed Time was 109 mS [INFO ]: Execution Started At: 09:11:38 [INFO ]: Execution Completed At: 09:11:38 Elapsed Time was 125 mS [INFO ]: Execution Completed At: 09:11:38 Elapsed Time was 1547 mS
the first 4 time information are from the calles transaction. The last time information is from the "outer" transaction.
But I just call the 4 transactions and don't do anything else. Why is there such a big time difference? (more then double of time) And how can I solve this problem?
Thanks
Matthias