Viewing 15 posts - 181 through 195 (of 938 total)
Eric Inman (7/3/2009)
Why is this a sql centric solution? Would performance be further improved with some C# code on an application server doing the xml heaving lifting?
If you're interested in...
July 4, 2009 at 5:50 pm
FreeHansje (6/2/2009)
June 28, 2009 at 6:37 pm
Jeff Moden (6/9/2009)
Mike C (6/9/2009)
Jeff Moden (6/9/2009)
Mike C (6/9/2009)
Another minor quibble - each instance of RAND() is invoked once per query.
SELECT RAND(), RAND()
Generates two different random numbers because RAND() is...
June 10, 2009 at 8:05 am
Jeff Moden (6/9/2009)
Mike C (6/9/2009)
Another minor quibble - each instance of RAND() is invoked once per query.
SELECT RAND(), RAND()
Generates two different random numbers because RAND() is actually called twice. ...
June 9, 2009 at 10:17 pm
drogers (6/9/2009)
A minor quibble with the article: the problem is not that RAND() is called multiple times with the same seed, once per row. The problem is that RAND() is...
June 9, 2009 at 5:47 pm
Someguy (6/9/2009)
Thank you for your answer to a slightly lazy question - Yes, I should have simply run the query SELECT Rand() and pushed the start button several times...
June 9, 2009 at 4:19 pm
sqlservercentral (6/9/2009)
June 9, 2009 at 4:13 pm
Jeff Moden (6/9/2009)
Mike C (6/9/2009)
June 9, 2009 at 4:11 pm
Someguy (6/9/2009)
Most languages have a random function that does not require you to add seeds and/or do other things to make...
June 9, 2009 at 11:30 am
timothyawiseman (6/9/2009)
If you truly need it to be random then the method you have is probably the way to go, but if you just want 20% of the...
June 9, 2009 at 11:22 am
Here's an interesting twist:
SELECT TOP (100) ABS(CHECKSUM(NEWID())) % 100
FROM dbo.syscolumns
WHERE ABS(CHECKSUM(NEWID())) % 100 BETWEEN 1 AND 5
Notice that the values returned are way outside the range 1..5 since the NEWID()...
June 9, 2009 at 9:14 am
Hi Oleg,
You could use the sys.dm_fts_parser to retrieve the expansion sets from SQL Server and use that to recreate a query string that includes all your inflectional and thesaurus word...
June 4, 2009 at 1:42 pm
wbrianwhite (5/13/2009)
Mike C (5/13/2009)
May 13, 2009 at 10:11 pm
wbrianwhite (5/12/2009)
May 13, 2009 at 12:50 pm
Vicky (5/4/2009)
This is first time I'm asking a question here. I'm trying to encrypt...
May 4, 2009 at 11:34 am
Viewing 15 posts - 181 through 195 (of 938 total)