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