&gt;&gt; ERROR:&nbsp; syntax error at or near "(" at character 93<br>&gt;&gt; LINE 4:&nbsp;&nbsp; "arg" bytea(16777215),<br><br>John Napiorkowski:<br>&gt; If you set the data_type attribute in your columns<br>&gt; definition, to 'btyea' everything should just work as<br>&gt; expected.&nbsp; If not, please give me a shout.<br><br>Hi John, thanks for the reply. <br><br>I'm not sure I follow. The line in question is within a <br>CREATE TABLE statement:<br><br>CREATE TABLE "job" (<br>&nbsp; "jobid" bigserial NOT NULL,<br>&nbsp; "funcid" bigint NOT NULL,<br>&nbsp; "arg" bytea (16777215),<br>&nbsp; ...<br><br>Unless I'm missing something (probably something really<br>obvious, I'm sure) line 4 _is_ trying to set the bytea <br>data_type attribute. Is there something else I need <br>to do here?<br><br>In the interest of full disclosure, the original mysql<br>statement is:<br><br>CREATE TABLE job (<br>&nbsp; jobid&nbsp;&nbsp; BIGINT UNSIGNED PRIMARY KEY NOT NULL
 AUTO_INCREMENT,<br>&nbsp; funcid&nbsp; INT UNSIGNED NOT NULL,<br>&nbsp; arg&nbsp;&nbsp;&nbsp;&nbsp; MEDIUMBLOB,<br>&nbsp; ...<br><br>/dennis<br>