Adding and filling new column on big table - Mailing list pgsql-performance

From Jonathan Blitz
Subject Adding and filling new column on big table
Date
Msg-id 01b401c6794f$f27355e0$ddf71005@jonathanlaptop
Whole thread Raw
Responses Re: Adding and filling new column on big table
List pgsql-performance

I have a table of about 500,000 rows.

 

I need to add a new column and populate it.

 

So, I have tried to run the following command. The command never finishes (I gave up after about and hour and a half!).

Note that none of the columns have indexes.

 

Update mytable set new_column =   

case when column_1 = column_2                                                                        then 1  

when column_1+column_3= column_2 and column_3 > 0                                      then 2  

when column_1+column_3+column_4 = column_2 and column_4 > 0                     then 3  

when column_1+column_3+column_4+column_5 = column_2 and column_5 > 0     then 4  

else                                                                                                                         0

end

 

 

My computer is a Pentium 4 – 2.4 GHZ and 1G RAM – so it should be fast enough.

 

Any ideas?

 

Jonathan Blitz

 


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.392 / Virus Database: 268.5.6/340 - Release Date: 05/15/2006

pgsql-performance by date:

Previous
From: Arjen van der Meijden
Date:
Subject: Re: Pgsql (and mysql) benchmark on T2000/Solaris and some
Next
From: Christopher Kings-Lynne
Date:
Subject: Re: IMMUTABLE?