Hello.
Can I revoke the sp_password stored procedure from a specific user?
Right now, the permissions of sp_password are set to nothing for guest and EXEC for public. Clicking on "List all users" doesn't change the list beyond guest and public.
I tried to run this script, but it didn't help either:
comes back with:
There is no such user or group 'my_user'.
Yet this user is in the Logins area.
Can I revoke the sp_password stored procedure from a specific user?
Right now, the permissions of sp_password are set to nothing for guest and EXEC for public. Clicking on "List all users" doesn't change the list beyond guest and public.
I tried to run this script, but it didn't help either:
Code:
REVOKE EXEC ON [sp_password]
TO [my_user]
comes back with:
There is no such user or group 'my_user'.
Yet this user is in the Logins area.