Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Randomizing Result Sets with NEWID

    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),

    ...

  • RE: Preventing usage of "SELECT *..."

    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...

Viewing 2 posts - 1 through 2 (of 2 total)