How to create a new user in a SQL Azure database
In SQL Server Management Studio:
1) select the database from the database dropdown list
2) run the following script:
CREATE USER [myusername] WITH PASSWORD = 'mypassword';
ALTER ROLE [db_owner] ADD MEMBER [myusername];
verasearch3 said
Note, you must specify the database when connecting or you will get a login failed error