EXPERT RESPONSE
The best solution in this case would be to use special SQL syntax to explicitly control the short, internal name instead of relying on DB2's column name generator. Here's an example of using the 'FOR COLUMN' clause to explicitly specify a short, internal name instead of having DB2 generate that identifier.
CREATE TABLE test1 (longlongname FOR COLUMN shortname CHAR(4))
|