This week i had to create a few new users for a SQL Azure database. I have to do this often, but I can never remember the exact steps that need to be run. If you've connected to a SQL Azure instance, you'll quickly see that some of the useful UI Options don't exist or work differently. For example, if you want to add a new user, you get a SQL script that just creates the user, but doesn't give them any access to the database: SQL: In order to actually give the user access to a database, you need to switch your connection to the database you want to the user to access and run the following command: CREATE USER [UserName] FOR LOGIN [ UserName] WITH DEFAULT_SCHEMA = dbo GO -- Add user to the database owner role EXEC sp_addrolemember N'db_owner', N'[ UserName] ' GO You can switch out the default schema and role to whatever fits your needs. After all of that, the user should work, but if you try to connect from SQL Mg...