sql server 查看当前表或者数据库的用户
3个回答
展开全部
--当前库下面的表
select
u.name,
o.name,
(select convert(varchar(8000), value) from ::fn_listextendedproperty(NULL, 'user', u.name, 'table', o.name, null, null) where name = 'MS_Description') as coln
from
sys.sysobjects o
join sys.schemas u on (u.schema_id = o.uid)
where
o.type in ('U')
order by 1, 2
--当前库下面的用户
select * from sysusers
where gid = 0
and hasdbaccess = 1
and islogin = 1
and issqluser = 1
--当前库下面的用户
EXEC sp_helprotect @username ='用户名'
--语法格式
sp_helprotect [ [ @name = ] 'object_statement' ]
[ , [ @username = ] 'security_account' ]
[ , [ @grantorname = ] 'grantor' ]
[ , [ @permissionarea = ] 'type' ]
密码不可见。。。。。
select
u.name,
o.name,
(select convert(varchar(8000), value) from ::fn_listextendedproperty(NULL, 'user', u.name, 'table', o.name, null, null) where name = 'MS_Description') as coln
from
sys.sysobjects o
join sys.schemas u on (u.schema_id = o.uid)
where
o.type in ('U')
order by 1, 2
--当前库下面的用户
select * from sysusers
where gid = 0
and hasdbaccess = 1
and islogin = 1
and issqluser = 1
--当前库下面的用户
EXEC sp_helprotect @username ='用户名'
--语法格式
sp_helprotect [ [ @name = ] 'object_statement' ]
[ , [ @username = ] 'security_account' ]
[ , [ @grantorname = ] 'grantor' ]
[ , [ @permissionarea = ] 'type' ]
密码不可见。。。。。
展开全部
1.先用windows登录2.单击安全性-登录名3.右击用户名(比如说SA)-属性4.常规中显示的是用户名,用户映射中显示的是用户的权限查看不到密码,但是可以修改
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个要登陆超级管理员,也就是总管理员。我这边没sql数据库,具体你自己看看里面设置,都有的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |