I have a table with a field:
cfield1 char(10) NOT NULL default ''
I need to change this field programatically to:
cfield1 varchar(100) NOT NULL default ''
To do this, I have to drop the constrant and then change the field with alter table ?? alter column ??? The problem with this is that I can not add the Default '' to this statement
How Can I make this change and keep the Default '' constrant