du kan använda encode
funktion:
select encode(bytea_column, 'hex')
from image;
Om du bara vill se de första byten, använd bara left()
funktion på det:
select left(encode(bytea_column, 'hex'), 40)
from image;
Mer information i manualen:
http://www .postgresql.org/docs/current/static/functions-binarystring.html