This error message is presented by SQL Server Management Studio only when you try to alter a table by:
- Changing a column, i.e., null to not null
- Changing data type on an existing column
- Adding new columns
To avoid this error and let SQL Server Management Studio alter the table on fly, follow the following steps:
- Click menu option Tools -> Options
- Select Designers from left pane
- Uncheck "Prevent saving changes that require table re-creation" option
- Click OK
Now try changing a table and then hit Save button. You should not see the message again!
No comments:
Post a Comment
Your comments are highly appreciated!