Before upgrading we should check the the current SQL Azure version. Connect to your SQL Azure server and execute the following command to get the version and other information.
I got the below results
Note the version shows 11.0.9229.2, considering the major version number (in this case 11) we know that this SQL Azure Server is V11.
In order to get the full upgrade information see this web site, and the article describes the relation between exact version number and V terminology. (portion of the article below)
A.1 Version clarification
This document concerns the upgrade of Microsoft Azure SQL Database from version V11 to V12. More formally the version numbers are close to the following two values, as reported by the T-SQL statement SELECT @@version; :
- 11.0.9228.18 (V11)
- 12.0.2000.8 (or a bit higher, V12)
Upgrading
You can upgrade the SQL Azure server to V12 (meaning the version 12.0.2000.8 or higher) from the new Azure Portal. (http://portal.azure.com)
View this article for the step by step upgrading for the process with screenshots
Thanks for the info, now I was able to upgrade it, perfect.
If someone would like to save some time, here is the same script from the picture above for copy:
select serverproperty(‘productversion’) as ‘Version’,
serverproperty(‘productlevel’) as ‘ReleaseName’, serverproperty(‘edition’) as ‘Edition’
Very useful article!!! Can you please let me know if Upgrade can be done using Azure POwershell Cmdlets . I am using Azure Powershell 0.9.8V
Yes you can upgrade using PowerShell
https://github.com/Azure/azure-content/blob/master/articles/sql-database/sql-database-upgrade-server.md