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.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Security for 1 table

Author  Topic 

csillagyitzik
Starting Member

2 Posts

Posted - 2004-12-27 : 16:04:26
Can I put security on one table only in a way that only users with password (or something like that) will be able to modify the records in that table?

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2004-12-27 : 16:06:25
Yes you can. Put the users in a database role. Then:

GRANT UPDATE ON dbo.TableName TO RoleName

Tara
Go to Top of Page
   

- Advertisement -