‎2007 Jul 03 6:25 AM
‎2007 Jul 03 6:30 AM
hi,
Processing: data is processed through transactions i.e. it will validate the fileds and values.
Updation:
data will be updated in the database through transactions.
synchronous Update - It will update transaction level and it goes database level.
then it goes next record.
Asynchronous Update : it will update transaction level and lt goes next record.
later it updates database level.
Synchronous update is slow processing
Asynchronous update is speed processing.
when you update the data at transaction level and it should update the data with respect to corresponding tables .. when you use asyn or syn ,all are sme but only thing is Syn update is it update the record transaction level and it goes db level and it will go next record.
where as Asyn update ,it updates transaction level and it goes next record.but it updates DB Level later.
<b>
Reward useful points</b>
Siva
‎2007 Jul 03 6:31 AM