Stored Procedures [dbo].[GetPolicyRoots]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Permissions
TypeActionOwning Principal
GrantExecuteRSExecRole
SQL Script
CREATE PROCEDURE [dbo].[GetPolicyRoots]
AS
SELECT
    [Path],
    [Type]
FROM
    [Catalog]
WHERE
    [PolicyRoot] = 1

GO
GRANT EXECUTE ON  [dbo].[GetPolicyRoots] TO [RSExecRole]
GO
Uses