Thanks to our intuitive transformation designer, you can convert data effortlessly to a variety of formats without knowing how to program. It’s not only efficient, it’s also easy to use.
i am trying to move from mysql to ms sql server and i have blob and varbinary fields to move to varbinaary in sql server. when i try to import into ms sql server the binary fields which do not allow nulls i am erroring out saying can not insert null values. mysql varbinary field is not null also
The problem is, that FlowHeater handle the SQL data types (blobs, images, varbinary, …) as internal FlowHeater RAW data type!
NOTE: All other FlowHeater data types can handle inserts and/or updates! Please have a look to:
FlowHeater data types
The reason is, FlowHeater generate for the internal RAW data type only SQL update statement, because FlowHeater doesn’t create for these data type the update statements by himself, the update statements are built by the database driver to connect to.
There are two possible ways to do this.
You have to change the field settings and allow NULL for this field in the SQL Server database.
Add a default value for this field (0x0) in the SQL Server database.
For both above you can use the SQL Server Management Studio.