0

Possible Duplicate:
Saving changes after table edit in SQL Server Management Studio

I need to make changes in a already made database, but SQL is refusing my request. Something about preventing changes that require the table to be re-created??

What to do?

Community
  • 1
  • 1

2 Answers2

2

This is an option in sql server management studio. It is not a permission issue.

To change this option, on the Tools menu, click Options, expand Designers, and then click Table and Database Designers. Select or clear the Prevent saving changes that require the table to be re-created check box.

Russell Hart
  • 1,842
  • 13
  • 20
0

Sounds like you've run into the following error when trying to alter a table structure via SSMS...

enter image description here

This is just a safety precaution in SSMS...read this article to learn how to disable it. Or better yet, manually script out the DDL changes in TSQL and add in some error-handling and reverse-changes logic.

WonderWorker
  • 8,539
  • 4
  • 63
  • 74
Bill Anton
  • 2,920
  • 17
  • 23