sql-server – 无法在SQL Server中使用用户定义函数在视图上创建索引

前端之家收集整理的这篇文章主要介绍了sql-server – 无法在SQL Server中使用用户定义函数在视图上创建索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
sql Server 2005中,我试图在索引视图中使用用户定义函数,该视图将用于全文索引.我已经能够让UDF使用存储过程和有问题的视图.但是,当我尝试在视图上创建索引时,我收到以下错误

无法在视图“DevDatabase.dbo.View_PersonSearch”上创建索引,因为视图引用的函数“dbo.GetCurrentImage”执行用户或系统数据访问.

我很难过.以下是我想要做的一个例子.我错过了什么,或者这是否可能?

用户定义的功能

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER FUNCTION [dbo].[GetCurrentImage](@Person_ID int) 
RETURNS int
WITH SCHEMABINDING
AS
BEGIN

    -- Declare the return variable here
    DECLARE @Img_ID int

    SET @Img_ID = (**sql that selects image** )

    RETURN @Img_ID

END
GO

查看索引创建

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER VIEW [dbo].[View_PersonSearch]
WITH SCHEMABINDING
AS
    SELECT  Person_ID,(**Select fields to search on**) AS SearchArea,dbo.GetCurrentImage(Person_ID) AS FK_Img_ID
FROM    dbo.Person
GO

CREATE UNIQUE CLUSTERED INDEX Index_Person_ID ON [View_PersonSearch](Person_ID)
GO

解决方法

根据 this page

Any functions referenced in an indexed
view must be deterministic;
deterministic functions return the
same value each time they’re invoked
with the same arguments.

GetCurrentImage在其参数方面不具有确定性 – 它使用select,这意味着结果可能随着数据的变化而变化 – 因此使用它的任何视图都不能被索引.

原文链接:https://www.f2er.com/mssql/77073.html

猜你在找的MsSQL相关文章