Is it possible to create a Server Login with a Master database user that is able to create a Server Login with a Master database user ?
I have not been able to do this, I always need to use the Admin user that was initially created when the server and first database was created.
Here is an example:
With Master DB Connection and logged in with Admin user
CREATE LOGIN Admin_Test WITH PASSWORD = ''
CREATE USER Admin_Test FROM LOGIN Admin_Test
EXEC sp_addrolemember 'loginmanager', 'Admin_Test';
With Master DB Connection and logged in with Admin_test user
CREATE LOGIN User1 WITH PASSWORD = ''
CREATE USER User1 FROM LOGIN User1
This fails with: User does not have permission to perform this action.
It seems that the only user allowed to create Users in Master Database is using the Admin user created when the Server and first Database was created ?