Nate Johnson has a quick demo showing how to add users to database roles:
The “old” method involves calling system stored-procedures,
sp_addrolemember
andsp_droprolemember
, in which you pass the role-name and username. The “new” method, supported starting with SQL 2012, is to use the command-phrasesALTER ROLE [role] ADD MEMBER [user]
, andALTER ROLE [role] DROP MEMBER [user]
.
Nate shows both methods, so check it out.