我注意到 SQL Profiler 中有一个表值函数,它似乎“多次调用自身”。
该定义也没有做任何奇怪的事情,它是一个很少的查询JOINs
和WHERE
带有hierarchyid方法的子句IsDescendantOf
这里发生了什么?难道只是虚惊一场?
你觉得呢?你有没有什么想法?
提前致谢
SQL:批量启动
exec sp_executesql N'SELECT * FROM [dbo].[GetPermissionsForUser](@p0)
',N'@p0 uniqueidentifier',@p0='7A2137C1-A7D4-415C-A5B5-F4C2351217C9'
SP:开始和 SP:已完成
SELECT * FROM [dbo].[GetPermissionsForUser](@p0)
架构
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)
)
这就是 SQL Profiler 中显示的内容
- 编辑
扩展事件会话不显示