Currently, i have a number of files stored in postgres 8.4 as bytea. The file types are .doc, .odt, .pdf, .txt and etc.

May i know how to download all the file stored in Postgres because i need to to do a backup. I need them in their original file type instead of bytea format.

Thanks!

link|improve this question
feedback

2 Answers

One simple option is to use COPY command with encode to hex format and then apply xxd shell command (with -p continuous hexdump style switch). For example let's say I have jpg image in bytea column in samples table:

\copy (SELECT encode(file, 'hex') FROM samples LIMIT 1) TO
    '/home/grzegorz/Desktop/image.hex'

$ xxd -p -r image.hex > image.jpg

As I checked it works in practice.

link|improve this answer
feedback

Best I'm aware, bytea to file needs to be done at the app level.

(9.1 might change this with the filesystem data wrapper contrib. There's also a lo_export function, but it is not applicable here.)

link|improve this answer
Hi, can you provide me some example code to download bytea to file at the application level. Thanks! – Chong Hsiung Jul 18 '11 at 10:02
Err.. You should have that code to display the files. Just save the stream instead. – Denis Jul 18 '11 at 10:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.