Hephaestious
Hephaestious

Reputation: 451

How do you create a SQL server for asp on azure?

I have an asp website with a SQL server that for some reason doesn't get passed along when I publish the solution. How do I get a SQL server running on azure? I've looked it up and tried following a couple of tutorials but there doesn't seem to be a whole lot of information on it.

Upvotes: 1

Views: 38

Answers (1)

Thibaut Ranise
Thibaut Ranise

Reputation: 715

To get an SQL server running on Azure, you have two solutions :

  1. PaaS solution with Azure SQL Database
  2. IaaS solution by using an SQL server Instance on a dedicated virtual machine

Here is a nice link explaining benefits and limitations of both solution.

Regards

Upvotes: 1

Related Questions