I\'m trying to update the length of a varchar column from 255 characters to 500 without losing the contents. I\'ve dropped and re-created tables before but I\'ve never been expo
This worked for me in db2:
alter table "JOBS" alter column "JOB_TITLE" set data type varchar(30);