Hi All,
I need to GRANT Read only Permission on few Databases.How Can I acheive this in SQL Server 2005 ?
Thanks In Advance
Anoop
Hi All,
I need to GRANT Read only Permission on few Databases.How Can I acheive this in SQL Server 2005 ?
Thanks In Advance
Anoop
A quick google search turns up plenty of answers.
such as this one...
But this question probably belongs on ServerFault.com
Grant the user(s) the datareader role
exec *THE_DATABASE_NAME*..sp_addrolemember @rolename='db_datareader', membername='*THE_USERNAME*'