sql server - Best way to create SQL user with read only permissions? -


what best-practice create read-only user specific database?

i created new user , granted db_datareader role, however, user still has access master db , other system databases. ok? or should deny access on system tables/databases make more secure?

thanks.


ok, if create new user, have more default permissions have deny? if ~create login ~create user login.. ~grant execute user

will user have execute permissions or have additional permissions active database?

hi believe user can view other database in object explorer too.

create login me password = 'me', check_policy = off  sp_changedbowner 'me' go  use master go   deny view database me go 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -