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?

link|improve this question
This would probably get more response over on Stack Overflow - though you don't have to do anything (other than have a linked account). It might also be beneficial if you added more information. – ChrisF Dec 30 '09 at 12:05
feedback

migrated from superuser.com Dec 30 '09 at 12:13

This question came from our site for computer enthusiasts and power users.

1 Answer

Change it to

ALTER TABLE emp ALTER COLUMN empid char(10)

Have a look at

ALTER TABLE (Transact-SQL)

and search for ALTER COLUMN examples

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.