I have a stored proc that I only want one user (and the dbo) to be able to EXECute. This doesn't work:
use [AdventureWorks]
DENY EXECUTE ON [dbo].[uspLogError] to public
GRANT EXECUTE ON [dbo].[uspLogError] TO [Tom]
What is the correct sql?
TIA,
barkingdog