X

The changes you have made require the following tables to be dropped and re-created

When changing tables in SQL Server Management Studio 2008 you may get the following error: Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. I was surprised when I saw this message first but there is very simple solution.

From top menu select Tools and then Options. Select Designer and Table and Database Designers.

Uncheck the box Prevent saving changes that require table re-creation. Now you can edit your tables without being stopped by re-creation limits.

Update. As mxmissile pointed out in his comment then don’t use this on tables with millions of rows.

Liked this post? Empower your friends by sharing it!

View Comments (20)

  • Thanks for the info. Certainly this should be only done during development phase in an empty table.

  • Thank you. I was just about to drop all my DB tables and try to create the whole DB from scratch ....saved my life!

  • You saved my from blowing a deadline on an active directory project with 25,000 users! Thank you so much for taking a moment to share.

  • I've read similar posts on a dozen different websites, but none are addressing the most important concern.

    I need to add a column to a table contain a few million rows. After testing this solution on a test database, I find that it only takes about 30 seconds to complete; not a big deal.

    So is this safe to do on a production table after hours?

    Is there any risk of losing data of any kind (table data, constraints, stats, indexes)?

    I guess I don't understand why MS locks you out in the first place. Is it solely because of the potential of hanging a production database for a long period of time (because its such an extensive operation)?

    Thanks for any insight!

  • Thanks for question, Andy. There is reason why MS locks this feature by default. Re-creating large tables may take more time than couple of seconds, it may take even hours to make change like this on large tables. The way how Management Studio performs this operation is very costy.

  • This far I have done this operation without data losses. If tables are large then it may take long hours to recreate them and fill with data again.

  • Thanks a lot. Saved me my day. I underwent the pain of dropping and re-creating the entire DB (development) a week earlier. Whew!!! An intimation along the "Save Cancelled" dialog box would have been a better option. Seems Microsoft had left its SQL users running helter-skelter by hiding such control info. Also makes an impression that Microsoft's curve bends low towards user-friendliness and goes soaring towards sophistication. While it seems good, not to forget the huge base of confused users left behind.

Related Post