Há uma função com valor de tabela no SQL Profiler que notei que parece "chamar-se várias vezes" .
A definição também não faz nada estranho, é uma consulta com poucos JOINs
e WHERE
cláusula com o método hierarchyidIsDescendantOf
O que esta acontecendo aqui? É apenas alarme falso?
Quais são seus pensamentos?
desde já, obrigado
SQL:BatchStarting
exec sp_executesql N'SELECT * FROM [dbo].[GetPermissionsForUser](@p0)
',N'@p0 uniqueidentifier',@p0='7A2137C1-A7D4-415C-A5B5-F4C2351217C9'
SP: Iniciando e SP: Concluído
SELECT * FROM [dbo].[GetPermissionsForUser](@p0)
Esquema
CREATE TABLE [dbo].[permission_matrix] (
[Id] [uniqueidentifier] NOT NULL,
[TargetId] [uniqueidentifier] NULL,
[Permission] [nvarchar](35) NOT NULL,
[GroupId] [uniqueidentifier] NULL,
[Options] [int] NOT NULL,
CONSTRAINT [PK_permission] PRIMARY KEY CLUSTERED ([Id] ASC)
CREATE TABLE [dbo].[hierarchy](
[NodeId] [int] IDENTITY(1,1) NOT NULL,
[EntityId] [uniqueidentifier] NOT NULL,
[EntityType] [smallint] NOT NULL,
[ParentEntityId] [uniqueidentifier] NULL,
[NodePath] [hierarchyid] NOT NULL,
CONSTRAINT [PK_hierarchy] PRIMARY KEY NONCLUSTERED ([NodeId] ASC)
CREATE FUNCTION [dbo].[GetPermissionsForUser]
(
@userId UNIQUEIDENTIFIER
)
RETURNS TABLE
AS
RETURN
(
SELECT
op.Id,
op.TargetId,
op.Permission,
op.GroupId,
op.Options
FROM [dbo].[permission_matrix] op
WHERE EXISTS(
SELECT
1
FROM [dbo].[hierarchy] gh
JOIN [dbo].[hierarchy] uh
ON uh.EntityId = @userId
AND uh.NodePath.IsDescendantOf(gh.NodePath) = 1
WHERE gh.EntityId = op.GroupId)
)
Isto é o que mostra no SQL Profiler
-- Editar
A sessão de evento estendida não exibe isso