Using PRESELECT EACH

Aman S. Aneja

New Member
Always! Let's see if KrisM can see the other typo.
I found it. It's exclusive :p

Also, w.r.t one other post from Tom:

Code:
define buffer updCustomer for customer.

for each customer no-lock:
  do for updCustomer transaction:
    find updCustomer exclusive-lock where rowid(updCustomer) = rowid(customer).
    updCustomer.custNum = customer.custNum + 10000.
  end.
end.
 
Top