up vote 2 down vote favorite
share [g+] share [fb]

I need to generate multiple random values under SQL Server 2005 and somehow this simply wont work

with Random(Value) as
(
    select rand() Value
    	union all
    select rand() from Random

)select top 10 * from Random

Whats the preffered workaround?

link|improve this question

60% accept rate
I like questions like this that force me to go to learn something new! Thanks! Hope the answer helped. – Mauro Oct 8 '08 at 15:01
feedback

2 Answers

up vote 3 down vote accepted

have you tries something like this (found at http://weblogs.sqlteam.com ) :

CREATE VIEW vRandNumber
AS
SELECT RAND() as RandNumber
GO

create a function

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

then you can call it in your selects as normal Select dbo.RandNumber() , * from myTable

or from their comments:

select RAND(CAST(NEWID() AS BINARY(6))), * from myTable
link|improve this answer
Thanks! Seems like the solution from their comments is about the samething that I came up with after some tinkering. Really odd that it doesnt get revaluated. – Torbjörn Gyllebring Oct 8 '08 at 15:03
feedback

I'm currently using this:

with Random(Value) as
(
    select rand(checksum(newid())) Value
    	union all
    select rand(checksum(newid())) from Random	
)select top 10 * from Random

but that seems overly hackish :S Why doesnt rand get reevaluated in the first version?

link|improve this answer
That will have as much entropy as newid(). checksum() and rand() are both deterministic in this context. – Peter Jun 18 '09 at 15:23
feedback

Your Answer

 
or
required, but never shown

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