Hi,
I'm loading data from mysql to GP.
I have this table in mysql:
CREATE TABLE images
(id int,
image blob)
and would like to load this data into GP.
CREATE TABLE images
(id integer,
image bytea)
For non-blob tables I usually do:
export mysql data to csv file --> load to gp from csv file using COPY or EXTERNAL TABLE
obviously, it doesn't work with binary data.
Please advise


Reply With Quote

