Try running this to be sure you have the right permissions:select o.name Object, user_name(o.uid) 'Schema', user_name(p.uid), case action when 193 then 'Select' when 195 then 'Insert' when 196 then 'Delete' when 197 then 'Update' when 26 then 'DRI' when 224 then 'Exec' end action, case when protecttype = 206 then 'Deny' else case when protecttype = 205 then 'Grant' else null end end protecttypefrom dbo.sysprotects p, dbo.sysobjects o, master.dbo.spt_values a where o.id = p.id and (( p.action in (193, 197) and ((p.columns & 1) = 1) ) or ( p.action in (195, 196, 224, 26) )) and (convert(tinyint, substring( isnull(p.columns, 0x01), a.low, 1)) & a.high != 0) and a.type = N'P' and a.number = 0 and user_name(p.uid) = 'USERNAME GOES HERE'order by 1, 2