문제

Can I grant select permission on all database to a user-defined role? I create a user-defined server role, and add logins as members of it. I want these logins can view all databases and have select permission on all databases. how should I do?

올바른 솔루션이 없습니다

다른 팁

exec sp_addrolemember db_datareader, <User-Defined Role>; 

This is equivalent to granting SELECT on all tables in the DB.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top