Sql Server : What are my permissions?
- Posted by Sqltimes
- On September 3, 2010
- 0 Comments
Quick one today: My permissions: Occasionally, we do want a quick way to check and gather a list of all permissions that my login has. Now there is a simple way: 1 2 3 4 5 -- -- Query my permissions on given securable -- SELECT * FROM fn_my_permissions('SampleTable', 'object') GO What permissions are […]
Read More