Viewing 2 posts - 1 through 2 (of 2 total)
Id agree - newid() is a performance killer.
its much faster to do something like this...
DECLARE @RandomNumber float
DECLARE @RandomInteger int
DECLARE @MaxValue int
DECLARE @MinValue int
SELECT @MinValue = MIN(Id),
...
March 1, 2010 at 12:57 am
#1126383
We have similiar issues here with the use of *, espically with young developers.
As all our DB projects are under source control, ive been able to control checking in SQL...
November 5, 2009 at 4:01 am
#1075234