List Object level permissions Posted by AskMeSql at 8:12 AM Post a Comment SELECT c.action, o.name, b.name FROM sys.objects oINNER JOIN sysprotects c ON o.object_id = c.idINNER JOIN sysusers b ON c.uid = b.uidWHERE o.type IN ('U','P','V')AND b.name = 'LoginName'
Post a Comment
Post a Comment