Hi Experts How I can prevent database user deleting any data in tables using triggers? I want just Admin delete Data from tables
Thanks
|
Hi Experts How I can prevent database user deleting any data in tables using triggers? I want just Admin delete Data from tables Thanks |
||||
|
|
|
Any particular reason you want to use triggers? You could simply remove the DELETE permission from the users you want to restrict. Have a look at the "Permissions" section here: http://msdn.microsoft.com/en-us/library/ms189835.aspx EDIT: Since you say you do want to use triggers (but I really think you should reconsider) you can create a table such as:
Create Remember you will have to maintain these triggers on all new tables added to the database as well as maintaining the list of users in the It would be a lot simpler to use the permission system available in SQL Server (it's what it's designed for) using roles with appropriate permissions set for the tables. Then, when adding new users you only have to assign them to the appropriate role and the delete permissions are handled for you. |
|||||||||||||
|
|
Umm take away that users permission? If you don't want them doing something, 'disallow' them that right... thats why we have permissions. Here are details on how to revoke permissions: |
||||