How to change the table name in visual studio 2013 in design mode?

Viewed 39877

I created a SQL database table in Visual Studio 2013. I want to rename it but the name property is disabled. How can I change the table name?

enter image description here

9 Answers

This will help if you accidently put a dang period in your table name

EXEC sp_rename '[dbo].[Vb.Net]','VB'
Related