You can only read the database with the following query. I'm not sure about loading read-only databases in SQL Azure
Read Only Database
--USE [master] --GO ALTER DATABASE [TESTDB] SET READ_ONLY GO
Make read / write database
--USE [master] --GO ALTER DATABASE [TESTDB] SET READ_WRITE GO
I got this from SQL_Authority , check it out for more details.
Edit:
USAGE [wizard] will not work in an Azure environment.
You can change the connection to use the [master] database.
source share