首页 > 代码库 > 查看帐号授权信息
查看帐号授权信息
查看指定帐号的授权信息
1 select OBJECT_NAME (id), USER_NAME (uid), 2 case action 3 when 193 then ‘select‘ 4 when 195 then ‘insert‘ 5 when 196 then ‘delete‘ 6 when 197 then ‘update‘ 7 when 224 then ‘execute‘ 8 else null end , 9 case protecttype10 when 205 then ‘GRANT‘11 when 206 then ‘DENY‘12 else null end ,13 columns,14 grantor15 from sysprotects where uid = USER_ID( ‘xxx‘)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。