Hi I have configured Azure active directory authentication on Azure SQL Server. After that I have added contained DB users on a SQL Database by using the following queries
Created user
CREATE USER [[email protected]] FROM EXTERNAL PROVIDER;
Assigned following permissions
EXEC sp_addrolemember 'db_datareader', '[email protected]';
GO
EXEC sp_addrolemember 'db_datawriter', '[email protected]';
GO
GRANT EXECUTE ON SCHEMA :: dbo TO [[email protected]];
GO
GRANT ALTER ON SCHEMA :: dbo TO [[email protected]];
GRANT CREATE TABLE TO [[email protected]];
GRANT SELECT,DELETE,UPDATE,INSERT TO [[email protected]];
GRANT VIEW ANY COLUMN MASTER KEY DEFINITION to [[email protected]];
GRANT VIEW ANY COLUMN ENCRYPTION KEY DEFINITION to [[email protected]];
Some users are able to login and access the DB but some users getting error message saying login failed for the user. Do I need to provide more permissions?