Swaminathan, Gayathri wrote: > For ex:I have a parcels table in postgresql to which I will have to > alter/update the geom information. Just use standard SQL: INSERT INTO <table> VALUES (23, 'POINT(0 0)'); UPDATE <table> set the_geom = 'POINT(0 0)' WHERE id = 23; dave