From: | "Jonathan Blitz" <jb(at)anykey(dot)co(dot)il> |
---|---|
To: | <pgsql-performance(at)postgresql(dot)org> |
Subject: | Adding and filling new column on big table |
Date: | 2006-05-17 01:19:26 |
Message-ID: | 01b401c6794f$f27355e0$ddf71005@jonathanlaptop |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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
From | Date | Subject | |
---|---|---|---|
Next Message | Christopher Kings-Lynne | 2006-05-17 01:29:13 | Re: IMMUTABLE? |
Previous Message | Arjen van der Meijden | 2006-05-16 18:08:32 | Re: Pgsql (and mysql) benchmark on T2000/Solaris and some |