As per the image below; I have no options to design the table or add new rows to my table. I can create a new table; but not modify the existing. Why won't it let me add a new column to my table? I am connecting to an Azure database.
1 回答
Make sure that the version of Management Studio you are using is >= that of your Azure database. I think that means you should be using SQL Server 2012's version of Management Studio. If you don't have access to that, you can get the free, no-longer-license-encumbered 2012 version. Click download, then scroll to the bottom, and choose whichever SQLManagementStudio file is appropriate for your language and platform (hopefully 64-bit, and it has to be > XP).
Of course, a better way to add a column is:
ALTER TABLE dbo.Loo...
ADD NewColumn INT;
Not only do you not have to rely on potentially buggy UI disasters, you can also store that in source control, which is much tougher to do when you've run a series of points and clicks.