Need help w/ a script

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • click37@gmail.com

    Need help w/ a script

    Is there a query that will let me see what SQL users has what access
    to which DBs and what lvl access they have?

  • Erland Sommarskog

    #2
    Re: Need help w/ a script

    (click37@gmail. com) writes:
    Is there a query that will let me see what SQL users has what access
    to which DBs and what lvl access they have?
    Not a single query, as the login-user mapping for a database is stored
    within it. You need to query each database, although this can be packaged
    with sp_MSforeachdb. I started to write something, but then it occurred
    to me that you had not said which version of SQL Server you are using.
    And the solution is completely different for SQL 2000 and SQL 2005.

    As for "what access" and "what lvl", you need to be more specific. The
    permission scheme in SQL 2005 is very fine-grained, and the query could
    be very complex - as could the output be.



    --
    Erland Sommarskog, SQL Server MVP, esquel@sommarsk og.se

    Books Online for SQL Server 2005 at

    Books Online for SQL Server 2000 at

    Comment

    • click37@gmail.com

      #3
      Re: Need help w/ a script

      On Aug 21, 5:31 pm, Erland Sommarskog <esq...@sommars kog.sewrote:
      (clic...@gmail. com) writes:
      Is there a query that will let me see what SQL users has what access
      to which DBs and what lvl access they have?
      >
      Not a single query, as the login-user mapping for a database is stored
      within it. You need to query each database, although this can be packaged
      with sp_MSforeachdb. I started to write something, but then it occurred
      to me that you had not said which version of SQL Server you are using.
      And the solution is completely different for SQL 2000 and SQL 2005.
      >
      SQL 2000. It doesn't need to be a stored prod, a developer that I
      know created a tool that will allow me to run a query across all
      servers & DBs. .
      As for "what access" and "what lvl", you need to be more specific. The
      permission scheme in SQL 2005 is very fine-grained, and the query could
      be very complex - as could the output be.
      >
      I need to know if each user has dbo rights, db_reader/writer and so
      forth.


      --
      Erland Sommarskog, SQL Server MVP, esq...@sommarsk og.se
      >
      Books Online for SQL Server 2005 athttp://www.microsoft.c om/technet/prodtechnol/sql/2005/downloads/books...
      Books Online for SQL Server 2000 athttp://www.microsoft.c om/sql/prodinfo/previousversion s/books.mspx

      Comment

      Working...