Kirill
Kirill

Reputation: 459

Can't create table for Azure SQL Server database in VS 2015

I created a SQL Server database on Azure and connected to this database (from SQL Server Object Explorer in Visual Studio 2015).

But when I try to create new table, I got endless:

"Loading... The design surface is loading"

enter image description here

How can I fix it?

Upvotes: 1

Views: 345

Answers (1)

Janley Zhang
Janley Zhang

Reputation: 1577

I suppose the loading info is the result of high CPU and high memory. You could close other useless pages in project and other apps. Try to restart the VS. Then open the Sql server object explorer slowly(wait a while). Or reconnect to Azure in VS to try again.

Close high CPU and high memory apps in Task Manager:

enter image description here

Besides, you could also create table in Azure sql in Server Explorer.

enter image description here

Upvotes: 1

Related Questions