I want to build a transact sql script that will stop certain people from executing certain commands against all databases:
drop database, drop table or preferbly drop *
delete
update
Is it possible? The user will already have access to the server.
Note. I am not trying to develop a security model for the server or prevent a malicious attack. This is an existing server where people can have a number of access rights through the various Windows groups to which they belong. I just want to know if there is quick protection so that people do not mistakenly execute the command on the wrong server.
cindi source
share