About 6,510,000 results
Open links in new tab
  1. Check users in a security group in SQL Server - Stack Overflow

    For a quick view of which groups / roles the current user is a member of; select [principal_id] , [name] , [type_desc] , is_member(name) as [is_member] from [sys].[database_principals] …

  2. sql server - what AD groups logins my user belongs to?

    Jan 7, 2016 · If the user is found to have permissions you can identify the group they have access from by checking the permission path. This will return the group domain\groupname that is …

  3. Is It Possible To View Which Users Belong To Which Security Group

    May 29, 2024 · Active Directory: Use PowerShell or ADSI Edit to check group memberships. SQL Server: Query the ReportServer database for role assignments. SSRS Report: Create an …

  4. How to tell if you are a member of a SQL Server group or ... - Tidbytez

    Jul 1, 2018 · The following scripts will help you determine if you are a member of a group or role or create a list of group members in SQL Server without having to use SQL Server …

  5. How to Find Users and their AD groups in SQL Server - SQL

    Jun 25, 2024 · As a SQL Server DBA, managing user access and permissions is crucial. Often, users belong to Active Directory (AD) groups that grant them access to the SQL Server …

  6. How to find list of AD groups of a user from SQL Server

    Jun 9, 2020 · To get more database specific information you can go to the database you are interested in and use sys.user_token to get a list of roles/AD groups associated with that …

  7. DBA - Find Members of AD Group in SQL Server - TechBrothersIT

    To Find out quickly the members of AD Group we use below statement. EXEC master.dbo.xp_logininfo 'DomainName\GroupName', 'members' xp_logininfo also can be use …

  8. Pulling AD group membership directly from SQL - Stack Overflow

    May 9, 2018 · You can use the following to query the server principals in SQL Server to list AD groups or users etc. SELECT Name, type_desc FROM sys.server_principals WHERE type = …

  9. How to determine SQL Security Login group for windows login when user ...

    May 23, 2007 · If I know the DOMAIN\SecurityGroup, which I have used for login and object permissions, then I can query sp_helprotect and determine what permissions the current user …

  10. SQL Query to return user details and group if user is member of group

    Apr 18, 2024 · FROM ''LDAP:///OU=USer,DC=domainDC=local,'' WHERE objectClass=''user'' AND objectCategory=''person'' and memberof=''CN=Equity Partners,OU=group …

  11. Some results have been removed
Refresh