I am very new to the database field and I have followed various sources such as Creating new user/login in sql azure and this to create and grant new user access to databases, they were all successful during the creation process but as soon as I tried logging in to the database, I get the following error.
Authentication:14678e5d-f8f5-4b1f-bb19-c67effaf2309[Microsoft.SqlServer.MessageText=Login failed for user 'vitra_public_user'. ,Microsoft.SqlServer.MessageSeverity=14,Microsoft.SqlServer.MessageId=18456]
So here is the procedure and details of how I created and granted the user access, can someone spot any mistakes that I have made pls.
creating a new LOGIN under the master database.
CREATE LOGIN vitra_public WITH password='<mY_PasSwOrd_hErE>'go into the specific(e.g. 'vitra-web') database to create user linking to the login.
CREATE USER vitra_public_user FOR LOGIN vitra_public
But as I tried logging onto the vitra-web database on Azure, I got the error so if anyone can spot any mistake that I made will be great!
Thanks
Ken