[dbo].[GetNameById]
(local)
>
ReportServer
>
Stored Procedures
> dbo.GetNameById
Properties
Parameters
Permissions
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@ItemID
uniqueidentifier
16
Permissions
Type
Action
Owning Principal
Grant
Execute
RSExecRole
SQL Script
CREATE
PROCEDURE
[dbo]
.
[GetNameById]
@ItemID
uniqueidentifier
AS
SELECT
Path
FROM
Catalog
WHERE
ItemID
=
@ItemID
GO
GRANT
EXECUTE
ON
[dbo]
.
[GetNameById]
TO
[RSExecRole]
GO
Uses
[dbo].[Catalog]
dbo