A very simple MSSQL command is giving error.
create table emp (empid char(6));
insert into emp values(3);
ALTER TABLE emp MODIFY empid char(10); //The error line :@
Error >Line 1: Incorrect syntax near 'empid'.
It's mindboggling, either the day is not mine or All Hail MS :P
Any resolutions?