However you can simply read a file from disk on SQL server machine:
select * from openrowset (bulk 'c:\path\filename.ext',single_blob) a
to see it in management application in hex form (Management Studio).
So, you can, for example, backup database to file (locally on server) and then download it to other place by the statement above.