Hi,
Here is what i tried to update 50% of the records in a table. Hope this helps.
create table test123 (acct integer, b integer);
insert into test123 values(1,NULL);
insert into test123 values(2,NULL);
insert into test123 values(3,NULL);
insert into test123 values(4,NULL);
update test123...