In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-27 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly shows you the "MSSQL how to view the role of each ID corresponding to the specific DB", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "how MSSQL views the role of each ID corresponding to the specific DB" this article.
Exec sp_MSforeachdb'insert into dbcenter..user_role_map ([DB_NAME], [uid], [uStatus], [uName], [rId], [rStatus], [rName]) select'?', a.uid as uid,a.status as uStatus,a.name as uName
B.uid as rId,b.status as rStatus,b.name as rName
From sysusers a left join sysmembers m on m.memberuid = a.uid
Left join sysusers b on b.gid = m.groupuid
Where a.issqluser = 1'
-- select substring (name, 1,70) 'Login Name',dbname from master..syslogins
-- relationship between users and roles
USE [DBCenter]
GO
-- drop table [DBCenter]. [DBO]. [user _ role_map]
CREATE TABLE [dbo]. [user_role_map] (
[DB_NAME] [varchar] (20) NOT NULL
[uid] [int] NULL
[uStatus] [int] NULL
[uName] [sysname] NOT NULL
[rId] [int] NULL
[rStatus] [int] NULL
[rName] [sysname] NULL
) ON [PRIMARY]
Use master
Go
Exec sp_MSforeachdb
'insert into dbcenter..user_role_map ([DB_NAME], [uid], [uStatus], [uName], [rId], [rStatus], [rName])
Select'?' As db_name,a.uid as uid,a.status as uStatus,a.name as uName
B.uid as rId,b.status as rStatus,b.name as rName
From sysusers a left join sysmembers m on m.memberuid = a.uid
Left join sysusers b on b.gid = m.groupuid
Where a.issqluser = 1'
Go
Select * from dbcenter..user_role_map
The above is all the content of this article entitled "how does MSSQL view the role of each ID corresponding to a specific DB". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.