0

How can I edit one of columns in a SQL server table ?
I want to change the type of one of columns from n var char (50) to n var char (100). When I do it, this error appears :
saving changes is not permitted.
how can I do it?

adt
  • 4,320
  • 5
  • 35
  • 54
Angel
  • 733
  • 1
  • 7
  • 12

1 Answers1

3

From Sql Server Management Studio

Tools-> Options -> Designers -> Uncheck Prevent saving changes that requires table re-creation.

"Prevent saving changes that require the table to be re-created" negative effects

http://support.microsoft.com/kb/956176

Community
  • 1
  • 1
adt
  • 4,320
  • 5
  • 35
  • 54