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?
You can change table name in T-SQL part as showin in image as follows..
CREATE TABLE{dbo].[t1]{ { ... ... }
to
CREATE TABLE{dbo].[t2]{ { ... ... }
ans then press "Update" button present above...