vote up 2 vote down star
2

In the tradition of this question and in light of the documentation, how does one make this function deterministic:

ALTER FUNCTION [udf_DateTimeFromDataDtID]
(
    @DATA_DT_ID int -- In form YYYYMMDD
)
RETURNS datetime
WITH SCHEMABINDING
AS
BEGIN
    RETURN CONVERT(datetime, CONVERT(varchar, @DATA_DT_ID))
END

Or this one (because of the string/date literals - and yes, I've also tried '1900-01-01'):

ALTER FUNCTION udf_CappedDate
(
    @DateTimeIn datetime
)
RETURNS datetime
WITH SCHEMABINDING
AS
BEGIN
    IF @DateTimeIn < '1/1/1900'
    	RETURN '1/1/1900'
    ELSE IF @DateTimeIn > '1/1/2100'
    	RETURN '1/1/2100'

    RETURN @DateTimeIn
END
flag

59% accept rate

3 Answers

vote up 4 vote down check

BOL says that CONVERT is deterministic with datetimes if the style parameter is specified. So if you change the first UDF to:

RETURN CONVERT(datetime, CONVERT(varchar, @DATA_DT_ID), 112)

Then it should be deterministic, if I understand the docs correctly.

Presumably, the same trick could be used in your second UDF:

IF @DateTimeIn < CONVERT(datetime, '1/1/1900', 101)
    RETURN CONVERT(datetime, '1/1/1900', 101)

I really wish there were a way to specify datetime literals in T-SQL.

EDIT:

As pointed out by Arvo in the comments (thank you, Arvo), the ODBC timestamp literal format can be used (even when using OLE DB) so the second function above could be better written as:

IF @DateTimeIn < {d '1900-01-01'}
    RETURN {d '1900-01-01'}
...etc.

and the conversion to datetime is done at compile time instead of execution time. Note that the format of the date has to be very specific (see Arvo's link to the datetime data type):

 d    yyyy-mm-dd
 t    hh:mm:ss[.fff]
ts    yyyy-mm-dd hh:mm:ss[.fff]

link|flag
I only ever used the style when converting TO varchar - the documentation is kind of ambiguous, but I've tried it and it clearly works. – Cade Roux Nov 21 '08 at 20:57
@P Daddy, Amen on the datetime literals. – David B Nov 21 '08 at 21:06
1  
About datetime literals - can't you use ODBC timestamp format like { d '1990-10-02' }? From msdn.microsoft.com/en-us/library/…: Applications that use the ADO, OLE DB, and ODBC-based APIs can use this ODBC timestamp format to represent dates and times. – Arvo Nov 25 '08 at 21:07
vote up 0 vote down

the YYYYMMDD construct can be split like this (please excuse formatting)

DATEADD(
       day, 
       @DATA_DT_ID % 100,
       DATEADD(
              month,
              (@DATA_DT_ID / 100) % 100,
              DATEADD(
                      year,
                      @DATA_DT_ID/10000,
                      0)
              )
       )

For the capped date, use 19000101 and 21000101 literals. This is ISO and is not locale dependent

IF @DateTimeIn < '19000101'
    SELECT @DateTimeIn = '19000101'
ELSE IF @DateTimeIn > '21000101'
    SELECT @DateTimeIn = '21000101'

RETURN @DateTimeIn
link|flag
The first is what I ended up with - except you need to subtract 1 from the day and month and 1900 from the year, of course. – Cade Roux Nov 25 '08 at 23:09
vote up 2 vote down

From the articles you linked:

To be deterministic, the style parameter must be a constant. Additionally, styles less than or equal to 100 are nondeterministic, except for styles 20 and 21. Styles greater than 100 are deterministic, except for styles 106, 107, 109 and 113.

You need to use a style parameter in your conversions to datetime.

For example:

CONVERT(datetime, '2008-01-01', 121)

Except don't use 121...

link|flag
So no literal dates as strings in UDFs without being CONVERTed? – Cade Roux Nov 21 '08 at 20:55
If strings get converted to dates implicitly, then those conversions lack "constant" styles and will make the function nondeterministic. – David B Nov 21 '08 at 21:08

Your Answer

Get an OpenID
or

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