Recently I was asked this interesting question – I need to revoke all privileges from a single table in the database,how can I do that?
Solution is simple – Using TSQL you can easily achieve this task.For Select permissions you can have
REVOKE SELECT ON dbo.tablename FROM user.
You can list the permissions granted to an object using sp_helprotect ‘dbo.table’