Hi folks, I'm struggling with how to specify the s...
# getting-started
h
Hi folks, I'm struggling with how to specify the size of string objects so that they can be mapped to a target database's varchar type with a specific size. The reason I need this functionality is that the target in question is an old Db2 instance with page size limited to 16KB, and just a few
varchar(max-length)
fields will exceed the page size. Db2 of this vintage does not support rows exceeding the page size. however, the text fields in question have string lengths guaranteed to be between a few characters to a few hundred characters.
1