Thread: how to update 400 000 register not at the same time?

how to update 400 000 register not at the same time?

From
"John Dizaro"
Date:
<br /><br />I Have um very big table with  primary key and all i nead.<br />When i update same register from this table
itcomes sj=low.<br />Can i Update all my  400 000 register not at the same time? By steps?<br /><br />Thanks<br /><br
/><br/><br clear="all" /><br />-- <br />John Evan Dizaro Software - <br />Fone: (41) 3333-0303<br />Fone: (41)
9243-3240<br/>Rua: Alferes Poli Curitiba - PR - Brasil<br /> 

Re: how to update 400 000 register not at the same time?

From
Shane Ambler
Date:
John Dizaro wrote:
> I Have um very big table with  primary key and all i nead.
> When i update same register from this table it comes sj=low.
> Can i Update all my  400 000 register not at the same time? By steps?
> 
> Thanks

Yes - provided you can come up with a definite way to separate your 
records into smaller groups.


Use a WHERE clause in your UPDATE -


UPDATE mytable SET col3=56 WHERE col1 IS BETWEEN 1 AND 10000
UPDATE mytable SET col3=56 WHERE col1 IS BETWEEN 10001 AND 20000
...
...


Of course you need to beware that it won't speed things up and you could
run into having other users looking at some old rows at the same time as
some updated rows.



-- 

Shane Ambler
pgSQL (at) Sheeky (dot) Biz

Get Sheeky @ http://Sheeky.Biz