I have a problem with migrating from SQL Server to IBM DB2 with the following code snippet:
CREATE TABLE fgt_qrtz_job_details (
sched_name varchar(200) not null,
job_name varchar(200) not null,
job_group varchar(200) not null,
description varchar(1020) null,
job_class_name varchar(1020) not null,
is_durable CHAR(1) not null,
is_nonconcurrent CHAR(1) not null,
is_update_data CHAR(1) not null,
requests_recovery CHAR(1) not null,
job_data varbinary(max) null);
The reason is the varbinary datatype, I can't find any appropriate type for DB2, maybe you have any suggestions? Thanks in advance.