Azure Online SQL Database Management Not Available

I am trying to host a sql server on azure to communicate with a node application. I successfully went through the process of creating a database server and the database itself. Now I would like to edit my database structure. From what I found online , there should be access to the database through the management portal using Azure. Each tutorial and other tips that I found (including an MSDN-related page) instructed me to find online database management software by clicking the โ€œmanageโ€ button on the page that displays my db. However, when I go to the correct page, there is no โ€œcontrol" click. I tried to access it in Safari, Chrome, and IE on a Windows 7 virtual machine, but nothing worked. My exact question is: with all the consideration, how can I create my database from the azure portal?

Image as evidence:

enter image description here

I would really appreciate any help with this,

for -Alex-

+6
source share
1 answer

Have you created the V12 database?

The control button that links you to the Azure SQL Database Management Portal ( http://yourservername.database.windows.net ) is not supported by Azure SQL V12 databases. For more information, see the Limitations section of this article: http://azure.microsoft.com/en-us/documentation/articles/sql-database-preview-plan-prepare-upgrade/


Microsoft recommends Visual Studio 2013 Community Edition (full-fledged IDE - FREE!). Download link here: https://www.visualstudio.com/products/visual-studio-community-vs

you can run this inside your windows. 7 VM

In visual studio 2013, you will have the same features as the old Azure SQL database management portal.

+9
source

Source: https://habr.com/ru/post/985831/


All Articles