IS is thread or process

Hi All i got some questions For you can you help me…?

1.IS is thread or process.

2.how we can delete session logs

3.what is difference between No transaction and local transaction i know the documentation difference but i need some scenario differences

Hello,

  1. Refer to ‘webMethods Logging Guide’

  2. For instance you have 10 records that you are looping on to insert/update one at a time .Then you can use No transaction(which does implicit commit) to commit each record upon insert or update.
    Else if you are using LocalTransaction then you you can do explicit commit by issuing startTransaction (before the loop or try),insert records and commit transaction(after the loop) . And in your catch block you can do rollback transaction on failure.By doing this you are explicitly managing your transaction i.e. commit on all or nothing.

Thank you,
Anil