Scenario:
Need to get permission on the server that will enable to see the activity monitor and to work with the SQL Server Profiler on sql server.
Those permission are needed for testing the work done on the Test DB
--------------------------------------------------------------------------------------------
How to give access to check Activity monitor?
USE master;
How to give access to run Sql Profiler on the server to one windows login i.e. non sysadmin?
USE master;
GRANT ALTER TRACE TO [windowslogin]
Or
Security tab --> Logins --> right click name to modify select properties --> Securables tab --> Click add --> Select the server you want to add the permissions to. The permissions should appear in the effective permissions list
You need to check the Grant column for the required permissions.