Alter Table Ct_Pu Modify Custunit Varchar(300);
alter table ct_sale modify custunit varchar(300);
Update Md_Property Set Attrlength = 300 Where Classid In (Select Id From Md_Class Where Name In ('ct_pu','ct_sale')) And Name In ('custunit');
update md_column set columnlength = 300 where tableid in ('ct_pu','ct_sale') and name in ('custunit');
commit;