I wanted to grand a CREATE DATABASE permission inside my SQL Azure Server to a specific user. I went to windows.azure.com, logged in, selected "Database" on the left pane, logged into the "master" database under the database admin account, selected "New Query" - a window with master: Query(Untitled1.sql) header appeared.
I typed
GRANT CREATE DATABASE TO THATUSERLOGIN;
and pressed execute and the query result is
CREATE DATABASE permission can only be granted in the master database.
What am I doing wrong? How do I do that right?