vote up 0 vote down star

I've got a new varchar(10) field in a database with 1000+ records. I'd like to update the table so I can have random data in the field. I'm looking for a SQL solution.

I know I can use a cursor, but that seems inelegant.

MS-SQL 2000,BTW

flag

75% accept rate

8 Answers

vote up 5 vote down check
update MyTable Set RandomFld =  CONVERT(varchar(10), NEWID())
link|flag
With this addition UPDATE table SET field = CONVERT(varchar(10), LEFT(NEWID(), 10)) – Dan Williams Sep 17 '08 at 14:51
Sorry, don't have SQLServer running here, so I couldn't test it. – James Curran Sep 17 '08 at 14:58
This assigns the same randomm value to every entry. stackoverflow.com/questions/94906/… will randomize each row, and works in SQL2000 – Adam Oct 8 '08 at 21:59
vote up 1 vote down

You might be able to adapt something like this to load a test dataset of values, depending on what you are looking for

link|flag
vote up 0 vote down

If this is a one time thing just to get data into the system I really see no issue with using a cursor as much as I hate cursors they do have their place.

link|flag
vote up 1 vote down

Additionally, if you are just doing this for testing or one time use I would say that an elegant solution is not really necessary.

link|flag
vote up 0 vote down

How about this:

UPDATE TBL SET Field = LEFT( CONVERT(varchar(255), @myid),10)
link|flag
vote up 1 vote down

Why not use the first 10 characters of an md5 checksum of the current timestamp and a random number?

link|flag
vote up 0 vote down

if you are in SQL Server you can use

CAST(RAND() as varchar(10))

EDIT: This will only work inside an iteration. As part of a multi-row insert it will use the same RAND() result for each row.

link|flag
vote up 1 vote down

Something like (untested code):

UPDATE yourtable
SET yourfield= CHAR(32+ROUND(RAND()*95,0));

Obviously, concatenate more random characters if you want up to ten chars. It's possible that the query optimizer might set all fields to the same value; in that case, I would try

SET yourfield=LEFT(yourfield,0)+CHAR…

to trick the optimizer into recalculating each time the expression.

link|flag

Your Answer

Get an OpenID
or

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