Quantcast
Channel: Active questions tagged cte - Database Administrators Stack Exchange
Viewing all articles
Browse latest Browse all 207

Recursive CTE Multiple Levels [duplicate]

$
0
0

I have a table showing which roles recursively grant access to which resources within a database. For example:

enter image description here

The Default_Role grants access to the App_Role, the App_Role grants access to the Security_Role, and the Security_Role grants access to three tables (customers, sales, users). So a member of the Default_Role is granted all of these, but Default_Role is not granted access to the Sys_Role, and is not granted access to the System or Admin tables.

CREATE TABLE SQLTest(     DBName     NVARCHAR(100) NULL    ,Privilege    NVARCHAR(100) NULL    ,PrivilegeType NVARCHAR(100) NULL    ,PrivilegeDetail NVARCHAR(100) NULL    ,TableName NVARCHAR(100) NULL)INSERT INTO SQLTestVALUES ('TSDB','Default_Role','Role','App_Role',NULL),('TSDB','App_Role','Role','Security_Role',NULL),('TSDB','Sys_Role','Role','Security_Role',NULL),('TSDB','Security_Role','Table','Customers','Customers'),('TSDB','Security_Role','Table','Sales','Sales'),('TSDB','Security_Role','Table','Users','Users'),('TSDB','Sys_Role','Table','System','System'),('TSDB','Sys_Role','Table','Admin','Admin')

What is the best way to flatten this out so you can see all the access (roles and tables) granted to the Default_Role, without showing additional access not granted to the Default_Role? Like this:

enter image description here

Tried putting together this example, but doesn't work.

http://www.sqlfiddle.com/#!18/f9a27/2


Viewing all articles
Browse latest Browse all 207

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>