Search notes:

SQL Server: sys.server_permissions

select
   suser_name(srp.grantee_principal_id) grantee,
   srp.permission_name,
-- srp.class,
   srp.class_desc,
   suser_name(srp.grantor_principal_id) grantor,
-- srp.type,
-- srp.state,
   srp.state_desc,
   srp.major_id,
   srp.minor_id
from
   sys.server_permissions srp
order by
   grantee;
Github repository about-MSSQL, path: /administration/schemas/sys/objects/views/server/permissions/select.sql

See also

The sys schema
sys.database_permissions

Index