[dbo].[ObjectExists]
(local)
>
ReportServer
>
Stored Procedures
> dbo.ObjectExists
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]
.
[ObjectExists]
@Path
nvarchar
(
425
),
@AuthType
int
AS
SELECT
Type
,
ItemID
,
SnapshotLimit
,
NtSecDescPrimary
,
ExecutionFlag
,
Intermediate
,
[LinkSourceID]
FROM
Catalog
LEFT
OUTER
JOIN
SecData
ON
Catalog.PolicyID
=
SecData.PolicyID
AND
SecData.AuthType
=
@AuthType
WHERE
Path
=
@Path
GO
GRANT
EXECUTE
ON
[dbo]
.
[ObjectExists]
TO
[RSExecRole]
GO
Uses
[dbo].[Catalog]
[dbo].[SecData]
dbo