Update quey - Mailing list pgsql-general

From Hall, Samuel L (Sam)
Subject Update quey
Date
Msg-id 69751890A64B3241A83BDB52A30BF29D0EB9C3@US70UWXCHMBA05.zam.alcatel-lucent.com
Whole thread Raw
In response to Re: Temp files on Commit  (Michael Paquier <michael.paquier@gmail.com>)
Responses Re: Update quey  (bricklen <bricklen@gmail.com>)
List pgsql-general
I have a table (pubacc_lo) from the US government with 500,00+ rows. It has latitude and longitude in three columns
eachfor degrees, minutes and seconds. I need a Point geometry column. So I wrote this query: 

with mydata AS (SELECT (pubacc_lo.lat_degrees + pubacc_lo.lat_minutes/60 + pubacc_lo.lat_seconds/3600) as lat ,
(pubacc_lo.long_degrees+ pubacc_lo.long_minutes/60 + pubacc_lo.long_seconds/3600) as long FROM pubacc_lo) 
UPDATE pubacc_lo SET lonlat_84 = ST_SetSRID(ST_makePOINT(long,lat),4326) FROM mydata;

It appears to work, but is going to take days it seems to finish. Anybody have a faster way?


pgsql-general by date:

Previous
From: David Johnston
Date:
Subject: Re: Column names for INSERT with query
Next
From: bricklen
Date:
Subject: Re: Update quey