Hi,
that correct that you have renamed the column so Desc_Catalog_Tm contains data now and Desc_Catalog is empty. You cannot modify column datatype. You can add below statement after alter as you dont want temp tables
update table2 set Desc_Catalog= Desc_Catalog_Tm
thanks
Hi,
that correct that you have renamed the column so Desc_Catalog_Tm contains data now and Desc_Catalog is empty. You cannot modify column datatype. You can add below statement after alter as you dont want temp tables
update table2 set Desc_Catalog= Desc_Catalog_Tm
thanks