the sys.database_permissions catalog view will give you which permissions are granted. join to the sys.database_principals to filter by role name.
SELECT ob.type_desc, dp.permission_name, dp.state_desc,ObjectName = OBJECT_NAME(major_id), GranteeName = grantee.name, GrantorName = grantor.name
FROM sys.database_permissions dp
JOIN sys.database_principals grantee
on dp.grantee_principal_id = grantee.principal_id
JOIN sys.database_principals grantor
on dp.grantor_principal_id = grantor.principal_id
JOIN sys.objects ob
on dp.major_id = ob.object_id
where grantee.name = '<role_name>'
Bob
-----------------------------------------------------------------------------
How to post to get the best help[/url]