Recently had to setup readonly access to all databases on a SQL Server, in the past this would have involved assigning roles to a login and that login to all databases, and then repeating for all new databases.
In SQL 2014 a new command allows for this to be simplified.
GRANT CONNECT ANY DATABASE TO [domain\AD-Group] GO GRANT SELECT ALL USER SECURABLES TO [domain\AD-Group]
ref: http://www.sqlservercentral.com/articles/Security/111116/
No comments:
Post a Comment