Question

I have two functions: fn_Without_Param and fn_With_Param

 CREATE FUNCTION [dbo].[fn_Without_Param]
 (
 )
 ...
 INNER JOIN .. ON .. AND SubmitDate = CONVERT( varchar(10), GETUTCDATE(), 101 )

and

/*
     I am requesting it so:
    declare @SubmitDate     datetime
    set @SubmitDate = CONVERT( varchar(10), GETUTCDATE(), 101 )
    select * from [dbo].[fn_With_Param] (@SubmitDate)
*/



CREATE FUNCTION [dbo].[fn_With_Param]
(
    @SubmitDate datetime    
)
...
INNER JOIN .. ON .. AND SubmitDate = @SubmitDate  

In the first case I have nondeterministic (?) function (because of GETUTCDATE) and I have called the second one with the same input parameter (CONVERT( varchar(10), GETUTCDATE(), 101 ) - meens today date without hours, minutes, seconds, millisecond). Is my function nondeterministic one? How to detect this, maybe sql server has some public mark. Why is the second function slower?

Was it helpful?

Solution

I'm not sure if there is a flag, but there is a reference available at http://msdn.microsoft.com/en-us/library/ms178091.aspx of which built in functions are deterministic.

GETDATE() and GETUTCDATE() are nondeterministic because if you call them multiple times with the same parameters, which in this case are none, you get different values. In other words, the return value is not determined by input.

As far as why the second is slower than the first, check for implicit conversion between SubmitDate = @SubmitDate. Are they both datetime?

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top