I think the answer is no but I\'m looking to give someone access to a SQL Server database but I only really want them to have access to one table.
SQL Server
It\'s
Yes.
exec sp_msforeachtable "DENY SELECT ON ? TO [username];" GO GRANT SELECT ON [schemaName].[tableName] to [username] Go
While that works, you would probably be better off managing permissions using roles and AD groups.