SQL Server Security – Deny Delete to Active Directory Account

Securitysql serversql-server-2008-r2sql-server-2012

I want to deny an AD account to delete any record in sql server. How can i do that?
DENY DELETE TO [usergorup\username] did not work. Is there another way?

Best Answer

I solved my issue by executing "DENY DELETE TO [UserGroup\UserName]" statement one by one in every databases on the server. It will solve your issue if you have same situation like this.