i m not able to modify table in SQL server. i m new to databases.

use work 
go 
alter table employee 
modify id varchar(20) 

error message is-

Msg 102, Level 15, State 1, Line 1 
Incorrect syntax near 'modify'

here is an screenshot

thanks

link|improve this question
I'm not allowed to access that site from work - could you post the error message please? – dsolimano Apr 21 '10 at 16:46
query i wrote is: use work go alter table employee modify id varchar(20) error message is- Msg 102, Level 15, State 1, Line 1 Incorrect syntax near 'modify'. – Jaspal Apr 21 '10 at 16:47
@closer: why close? – Raj More Apr 21 '10 at 16:57
feedback

2 Answers

up vote 2 down vote accepted

You have the syntax for altering a table wrong. You need:

ALTER TABLE YourTable
ALTER COLUMN ExistingColumn VARCHAR(20)
link|improve this answer
alter table table_name alter column column_name data_type<br> this worked...thanks raj n AdaTheDev<br> id is not identity raj. just a name alter table table_name modify column_name data_type<br> this worked fine on my college comp.. but gave error on my pc – Jaspal Apr 21 '10 at 16:58
feedback

The syntax should be

ALTER TABLE Employee ALTER COLUMN ID VarChar (20)

Here is the ALTER COLUMN syntax.

http://msdn.microsoft.com/en-us/library/ms190273.aspx

Now, having said all that, I have a question for you.. Why is your ID column a VarChar as opposed to an Identity Column?

link|improve this answer
It could be that ID is like a UserID. Benefit of the doubt... – Joe Apr 21 '10 at 16:53
thanks raj more... still same problem link – Jaspal Apr 21 '10 at 16:53
@Joe I assumed just as much, but asked anyway thinking it may be a design time issue that we can correct before it gets out of hand for @Jaspal – Raj More Apr 21 '10 at 16:54
@Jaspal: Replace MODIFY COLUMN with ALTER COLUMN – Raj More Apr 21 '10 at 16:56
it worked raj...thanks:) – Jaspal Apr 21 '10 at 17:00
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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