Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I simply want to be able to export jpg data from a single record to a file without having to write a program every time.

Query:

select Media from tbl_GEO_ElementImage where ElementImageID = 64902
share|improve this question

1 Answer

Use the command line BCP utility:

c:\temp\>bcp "select Media from tbl_GEO_ElementImage where ElementImageID = 64902" queryout "001.jpg" -T

When promped, give the following answers:

    Enter the file storage type of field Media [image]: <Enter>
    Enter prefix-length of field Media [4]: 0
    Enter length of field Media [0]: <Enter>
    Enter field terminator [none]: <Enter>

Do you want to save this format information in a file? [Y/n] n
share|improve this answer
I had to do this for multiple records, so I ended up writing a script to generate a series of these statements, adding the additional "-n" flag to avoid prompting for values. Unfortunately it did add the 4 byte prefix since it's the default, but another quick script removed the first 4 bytes afterwards. Thanks for the post, this really helped me out! – Dan Breen Mar 13 '12 at 18:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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