1

i am using COPY command to export the data to the out file with changes made to the data before export using option ST_asBinary() using command

COPY (
 SELECT st_asBinary(geom) FROM n_america
) TO '/install/shp_data/n_america_asbin_1_col.txt' 
WITH DELIMITER ',';

now i am facing problem with Restoring back to the other table with geometry column , which is now converted to binary while exporting

i have tried with COPY FROM as well as PG_BULKLOAD utility , but i did't got any solution to do this ,

any one please help

Regards Deepak M

András Váczi
31.8k13 gold badges103 silver badges152 bronze badges
asked Jun 22, 2012 at 9:15

1 Answer 1

2

Your simple solution is to import into a separate table and then use another query to copy the data back, converting to proper format.

answered Sep 9, 2012 at 8:09

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.