After a bit of searching and reading the documentation, it's clear that you can write user defined functions in SQL Server that are marked as either deterministic or nondeterministic depending on which built-infunctions are used within the body.

RAND() is listed under the nondeterministic functions (see msdn article). So why can't I use it in a function?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Because it has side effects.

Constructs with side effects are not allowed in a function. The side effect that it has is to change some internal state that keeps track of the last rand() value issued.

I think you can get around it by including it in a View definition then selecting from the View.

link|improve this answer
ah, I understand now! I didn't think about the internal storage of the last random number. I can see how this sets it apart from other nondeterministic functions. Thanks! – BG100 Aug 20 '10 at 14:24
check out sqlfascination.com/tag/randomstring It tells you exactly how to do this. – dave at flow Apr 12 at 0:25
feedback

Using a View might work for you.
From Returning Random Numbers from a select statement

CREATE VIEW vRandNumber
AS
SELECT RAND() as RandNumber

The view is necessary because, as you already found out, a UDF cannot use the rand() function because that would make the function non-determistic. You can trick the UDF to accept a random number by using a View.

CREATE FUNCTION RandNumber()
RETURNS float
AS
  BEGIN
  RETURN (SELECT RandNumber FROM vRandNumber)
  END

Finally, you can use this function in any SELECT to now return a random number between 0 and 1 per row:

SELECT dbo.RandNumber(), *
FROM Northwind..Customers
link|improve this answer
3  
+1 For the view trick. I just remembered about that as well. It isn't because of the determinism though. getdate() is allowed in a function. Obviously that function can't be then used where a deterministic function is required such as a persisted computed column. It is because of the side effects. The error raised is "Invalid use of a side-effecting operator 'rand' within a function." – Martin Smith Aug 20 '10 at 13:59
Thanks! I'd heard about doing this as a work around for the NEWID() function, but didn't realise it would work for RAND() as well. – BG100 Aug 20 '10 at 14:22
feedback

Your Answer

 
or
required, but never shown

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