5

I'm creating a database in SQL Server Management Studio which contains some tables plus stored procedures, now I have set all relationship between all tables but I want to alter something in the design of some tables however it keeps telling me the changing you have made require the following table to be dropped and re-created.

Is the a way do alter the design without creating table from scratch ??

2 Answers2

3

Turn off this option here (under the Tools > Options menu in SSMS) and you'll be able to make your changes:

enter image description here

It's checked (and thus activated) by default after installation.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
0

Yes, you can often issue an ALTER TABLE statement against the database even when SQL Management Studio believes that table recreation is required.

Larry Lustig
  • 49,320
  • 14
  • 110
  • 160