I have the following user-defined function:

create function [dbo].[FullNameLastFirst]
(
    @IsPerson bit,
    @LastName nvarchar(100),
    @FirstName nvarchar(100)
)
returns nvarchar(201)
as
begin
    declare @Result nvarchar(201)
    set @Result = (case when @IsPerson = 0 then @LastName else case when @FirstName = '' then @LastName else (@LastName + ' ' + @FirstName) end end)
    return @Result
end

I can't create an Index on a computed column using this function cause it's not deterministic. Someone could explain why is it not deterministic and eventually how to modify to make it deterministic? Thanks

link|improve this question

0% accept rate
feedback

2 Answers

Create it with schemabinding

create function [dbo].[FullNameLastFirst]
(
    @IsPerson bit,
    @LastName nvarchar(100),
    @FirstName nvarchar(100)
)
returns nvarchar(201)
with schemabinding
as
begin
    declare @Result nvarchar(201)
    set @Result = (case when @IsPerson = 0 then @LastName else case when @FirstName = '' then @LastName else (@LastName + ' ' + @FirstName) end end)
    return @Result
end

go

select objectproperty(object_id('[dbo].[FullNameLastFirst]'), 'IsDeterministic')
link|improve this answer
I created my Index pointing to the computed column. I have also a View that refers to my table. I think I have to specify SchemaBinding on the View too to create an Index on the same column. About this, if my base Table as an Index on the computed column, is redundant create another Index on the View ? – opaera Sep 6 '10 at 13:57
@opaera - Yes - You wouldn't need to index that column in the view as well. – Martin Smith Sep 6 '10 at 14:07
A final question, if you can. I have a sp that makes a query on the View (the View referencing my indexed table). I can/should specify the Index name into the query from clause? e.g. Select * From MyView (With MyTableIndex) ... Maybe I have some benefits doing that? – opaera Sep 6 '10 at 14:12
@opaera - No it should use the persisted column values automatically as long as either ARITHABORT or ANSI_WARNINGS are on. You can check the execution plan to determine this. – Martin Smith Sep 6 '10 at 14:19
Thanks very much. – opaera Sep 6 '10 at 14:31
feedback

You need to declare the User Defined Function with SchemaBinding

create function [dbo].[FullNameLastFirst] 
( 
    @IsPerson bit, 
    @LastName nvarchar(100), 
    @FirstName nvarchar(100) 
) 
returns nvarchar(201) 
with schemabinding
as 
begin 
    declare @Result nvarchar(201) 
    set @Result = (case when @IsPerson = 0 then @LastName else case when @FirstName = '' then @LastName else (@LastName + ' ' + @FirstName) end end) 
    return @Result 
end 


create table Person
(
isperson bit,
lastname nvarchar(100),
firstname nvarchar(100),
fullname as [dbo].[FullNameLastFirst] (isperson, lastname, firstname)
)
go
insert into person(isperson, lastname, firstname) values (1,'Firstname', 'Surname')
go

create index ix1_person on person(fullname)
go

select fullname from Person with (index=ix1_person) where fullname = 'Firstname Surname'
go
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.