Reputation: 677
I just got finished creating a VM in Azure and called it vm123. I was trying to use that VM when creating my SQL Server. When I create a SQL Database in Azure, it forces me to either create a server or pick one from dropdown. Why can't I see my vm123 in the list?
I can create a new one alright, which is what I did, since my VM did not appear in the dropdown. How do I remote into it?
See screenshots...
Upvotes: 0
Views: 62
Reputation: 2599
Azure SQL Database is a managed service and the underlying infrastructure is shared across tenants.
If you really need access to the host then you'll need to choose from one of the following:
Upvotes: 1
Reputation: 222720
You are confusing VM with the Database server, the one asked in the dropdown is a SQL server not a VM. Those two are two different services on Azure.
To fix this create a SQL server resource first and you should be able to see that in the dropdown when you create the database.
Upvotes: 1