You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are trying out SIARDDK against MSSQLServer and the LOBs ar not extracted to files as I had expected from a VARBINARY(max) column.
The returned ResultSet in the getColumn method of JDBCImportModule.java returns the dataType as -3 and the typeName as varbinary.
In SQLServerDatatypeImporter.java the -3 dataType gets the sql99TypeName "BINARY VARYING(2147483647)" but SIARDDK only extracts the LOBs if they are marked as "BINARY LARGE OBJECT" or "CHARACTER LARGE OBJECT".
Is there any reason why VARBINARY(max) has not been set to be extracted?
The text was updated successfully, but these errors were encountered:
We are trying out SIARDDK against MSSQLServer and the LOBs ar not extracted to files as I had expected from a VARBINARY(max) column.
The returned ResultSet in the getColumn method of JDBCImportModule.java returns the dataType as -3 and the typeName as varbinary.
In SQLServerDatatypeImporter.java the -3 dataType gets the sql99TypeName "BINARY VARYING(2147483647)" but SIARDDK only extracts the LOBs if they are marked as "BINARY LARGE OBJECT" or "CHARACTER LARGE OBJECT".
Is there any reason why VARBINARY(max) has not been set to be extracted?
The text was updated successfully, but these errors were encountered: