show/hide this revision's text 4 added 93 characters in body

Two problems:

  • Firstly, the rand() function returns a number between 0 and 1.
  • Secondly, when rand() is called multiple times in the same batchquery (e.g. for multiple rows in an update statement), it usually returns the same number (which I suspect your algorithm above is trying to solve, by splitting it into multiple calls)

My favourite way around the second problem is to use a function that's guaranteed to return a unique value each time, like newid(), convert it to varbinary, and use it as the seed :)

Edit: after some testing, it seems you'll need to try using a different datatype for @RandomNoSeed; float behaves somewhat different to decimal, but still approaches a fixed value, so I'd recommend avoiding the use of @RandomNoSeed altogether, and simply use:

INSERT INTO MonthlySales(FFCode, SaleDate, SaleValue) 
VALUES(@fieldForceCounter, @SaleDate, RAND(convert(varbinary,newid())))
show/hide this revision's text 3 added 158 characters in body; added 193 characters in body; added 61 characters in body

Two problems:

  • Firstly, the rand() function returns a number between 0 and 1.
  • Secondly, when rand() is called multiple times in the same batch, it returns the same number (which I suspect your algorithm above is trying to solve)

My favourite way around the second problem is to use a function that's guaranteed to return a unique value each time, like newid(), convert it to varbinary, and use it as the seed :)

Edit: after some testing, it seems you'll need to try using a different datatype for @RandomNoSeed; float behaves somewhat different to decimal, but still approaches a fixed value, so I'd recommend avoiding the use of @RandomNoSeed altogether, and simply use:

INSERT INTO MonthlySales(FFCode, SaleDate, SaleValue) 
VALUES(@fieldForceCounter, @SaleDate, RAND(convert(varbinary,newid())))
show/hide this revision's text 2 added 57 characters in body

Two problems:

  • Firstly, the rand() function returns a number between 0 and 1.
  • Secondly, when rand() is called multiple times in the same batch, it returns the same number. (which I suspect your algorithm above is trying to solve)

My favourite way around the second problem is to use a function that's guaranteed to return a unique value each time, like newid(), convert it to varbinary, and use it as the seed :)

show/hide this revision's text 1