Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ashraf_al_ani
Starting Member
2 Posts |
Posted - 2012-12-01 : 15:42:23
|
Dear alli am using sql server 2000 personal edition in windows 7i am using access project (front end access) back end (sql server2000)please is there a way to preven a user from delete any record in a table calles item? best regards |
|
sodeep
Master Smack Fu Yak Hacker
7174 Posts |
Posted - 2012-12-01 : 19:22:08
|
[code]Deny delete on <tablename> to <username>[/code] |
|
|
ashraf_al_ani
Starting Member
2 Posts |
Posted - 2012-12-02 : 14:27:35
|
thanks for responding but please can you give me the details how can i deny delete to user name |
|
|
sodeep
Master Smack Fu Yak Hacker
7174 Posts |
Posted - 2012-12-02 : 19:41:25
|
Run above statement and replace tablename and username with original. |
|
|
|
|
|