I've used SQL::Translator to translate a mysql schema file to postgresql schema file. He translates this:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arg&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MEDIUMBLOB,<br><br>into this:<br><br><code></code>&nbsp; "arg" bytea (16777215),<br><br>But when I try to slurp the sql file into Pg, I get this error:<br><br>ERROR:&nbsp; syntax error at or near "(" at character 93<br>LINE 4:&nbsp;&nbsp; "arg" bytea(16777215),<br><br>I do not understand this error, nor how to resolve it. Pg doco and googling have left me even more confused.<br><br>/dennis<br><br><br>