[dbo].[GetParameters]
(local)
>
ReportServer
>
Stored Procedures
> dbo.GetParameters
Properties
Parameters
Permissions
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@Path
nvarchar(425)
850
@AuthType
int
4
Permissions
Type
Action
Owning Principal
Grant
Execute
RSExecRole
SQL Script
CREATE
PROCEDURE
[dbo]
.
[GetParameters]
@Path
nvarchar
(
425
),
@AuthType
int
AS
SELECT
Type
,
[Parameter]
,
ItemID
,
SecData.NtSecDescPrimary
,
[LinkSourceID]
,
[ExecutionFlag]
FROM
Catalog
LEFT
OUTER
JOIN
SecData
ON
Catalog.PolicyID
=
SecData.PolicyID
AND
SecData.AuthType
=
@AuthType
WHERE
Path
=
@Path
GO
GRANT
EXECUTE
ON
[dbo]
.
[GetParameters]
TO
[RSExecRole]
GO
Uses
[dbo].[Catalog]
[dbo].[SecData]
dbo